@oneflowui/ui 0.8.1 → 0.8.3

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 (107) hide show
  1. package/dist/components/Dashboard/charts/BarChart.vue.js +2 -2
  2. package/dist/components/Dashboard/charts/BarChart.vue2.js +9 -9
  3. package/dist/components/Dashboard/charts/NumberCard.vue.js +2 -2
  4. package/dist/components/Dashboard/charts/PieChart.vue.js +1 -1
  5. package/dist/components/Dashboard/charts/PieChart.vue2.js +3 -3
  6. package/dist/components/Dashboard/charts/TableChart.vue.js +2 -2
  7. package/dist/components/Dashboard/index.vue.js +2 -2
  8. package/dist/components/base/InfoCard.vue.js +1 -1
  9. package/dist/components/base/InfoCard.vue2.js +40 -40
  10. package/dist/components/base/StatisticCard.vue.js +3 -3
  11. package/dist/components/base/StatusSummary.vue.js +1 -1
  12. package/dist/components/base/StatusSummary.vue2.js +5 -5
  13. package/dist/components/database/DatabaseDetailPresenter.vue.d.ts +41 -0
  14. package/dist/components/database/DatabaseDetailPresenter.vue.js +76 -0
  15. package/dist/components/database/DatabaseDetailPresenter.vue2.js +4 -0
  16. package/dist/components/database/DatabaseDetailWorkspace.vue.d.ts +37 -0
  17. package/dist/components/database/DatabaseDetailWorkspace.vue.js +7 -0
  18. package/dist/components/database/DatabaseDetailWorkspace.vue2.js +103 -0
  19. package/dist/components/database/DatabaseView.vue.d.ts +13 -76
  20. package/dist/components/database/DatabaseView.vue.js +2 -2
  21. package/dist/components/database/DatabaseView.vue2.js +322 -921
  22. package/dist/components/database/DatabaseViewContent.vue.d.ts +74 -0
  23. package/dist/components/database/DatabaseViewContent.vue.js +79 -0
  24. package/dist/components/database/DatabaseViewContent.vue2.js +4 -0
  25. package/dist/components/database/DatabaseViewDetailHost.vue.d.ts +43 -0
  26. package/dist/components/database/DatabaseViewDetailHost.vue.js +59 -0
  27. package/dist/components/database/DatabaseViewDetailHost.vue2.js +4 -0
  28. package/dist/components/database/DatabaseViewShell.vue.d.ts +35 -0
  29. package/dist/components/database/DatabaseViewShell.vue.js +7 -0
  30. package/dist/components/database/DatabaseViewShell.vue2.js +71 -0
  31. package/dist/components/database/DatabaseViewToolbar.vue.d.ts +77 -0
  32. package/dist/components/database/DatabaseViewToolbar.vue.js +62 -0
  33. package/dist/components/database/DatabaseViewToolbar.vue2.js +4 -0
  34. package/dist/components/database/databaseViewUtils.d.ts +91 -0
  35. package/dist/components/database/databaseViewUtils.js +266 -0
  36. package/dist/components/database/index.d.ts +1 -1
  37. package/dist/components/kanban/KanbanColumn.vue.d.ts +2 -2
  38. package/dist/components/layout/AppLayout.vue.js +1 -1
  39. package/dist/components/layout/Navbar.vue.js +1 -1
  40. package/dist/components/layout/Sidebar.vue.js +2 -2
  41. package/dist/components/layout/StatusBar.vue.js +2 -2
  42. package/dist/components/overlay/Dialog.vue.d.ts +1 -1
  43. package/dist/components/table/ColumnHeaderMenu.vue.js +3 -3
  44. package/dist/components/table/DataTable.vue.d.ts +6 -17
  45. package/dist/components/table/DataTable.vue.js +2 -2
  46. package/dist/components/table/DataTable.vue2.js +781 -872
  47. package/dist/components/table/DataTableDesktopFixedRegion.vue.d.ts +56 -0
  48. package/dist/components/table/DataTableDesktopFixedRegion.vue.js +7 -0
  49. package/dist/components/table/DataTableDesktopFixedRegion.vue2.js +67 -0
  50. package/dist/components/table/DataTableDesktopFrame.vue.d.ts +127 -0
  51. package/dist/components/table/DataTableDesktopFrame.vue.js +7 -0
  52. package/dist/components/table/DataTableDesktopFrame.vue2.js +196 -0
  53. package/dist/components/table/DataTableDesktopScrollRegion.vue.d.ts +55 -0
  54. package/dist/components/table/DataTableDesktopScrollRegion.vue.js +7 -0
  55. package/dist/components/table/DataTableDesktopScrollRegion.vue2.js +66 -0
  56. package/dist/components/table/DataTableDesktopStandardRegion.vue.d.ts +54 -0
  57. package/dist/components/table/DataTableDesktopStandardRegion.vue.js +7 -0
  58. package/dist/components/table/DataTableDesktopStandardRegion.vue2.js +65 -0
  59. package/dist/components/table/DataTableDraftToolbar.vue.d.ts +11 -0
  60. package/dist/components/table/DataTableDraftToolbar.vue.js +7 -0
  61. package/dist/components/table/DataTableDraftToolbar.vue2.js +25 -0
  62. package/dist/components/table/DataTableMobilePanel.vue.d.ts +79 -0
  63. package/dist/components/table/DataTableMobilePanel.vue.js +60 -0
  64. package/dist/components/table/DataTableMobilePanel.vue2.js +4 -0
  65. package/dist/components/table/DataTableSelectionBar.vue.d.ts +11 -0
  66. package/dist/components/table/DataTableSelectionBar.vue.js +7 -0
  67. package/dist/components/table/DataTableSelectionBar.vue2.js +33 -0
  68. package/dist/components/table/DetailSheet.vue.js +1 -1
  69. package/dist/components/table/DetailSheet.vue2.js +160 -187
  70. package/dist/components/table/FieldTypePicker.vue.js +3 -3
  71. package/dist/components/table/MobileListView.vue.js +1 -1
  72. package/dist/components/table/TableColumnManager.vue.js +3 -3
  73. package/dist/components/table/TableDataRow.vue.js +4 -4
  74. package/dist/components/table/TableFilterPanel.vue.js +1 -1
  75. package/dist/components/table/TableGroupRow.vue.js +2 -2
  76. package/dist/components/table/TableHeaderRow.vue.js +3 -3
  77. package/dist/components/table/TableToolbar.vue.js +2 -2
  78. package/dist/components/table/TableToolbar.vue2.js +126 -138
  79. package/dist/components/table/dataTableUtils.d.ts +26 -0
  80. package/dist/components/table/dataTableUtils.js +60 -0
  81. package/dist/composables/databaseDetailWorkspaceUtils.d.ts +59 -0
  82. package/dist/composables/databaseDetailWorkspaceUtils.js +160 -0
  83. package/dist/composables/index.d.ts +5 -0
  84. package/dist/composables/useDataTableDetailSheet.d.ts +47 -0
  85. package/dist/composables/useDataTableDetailSheet.js +58 -0
  86. package/dist/composables/useDataTableLayout.d.ts +16 -0
  87. package/dist/composables/useDataTableLayout.js +38 -0
  88. package/dist/composables/useDataTableSelection.d.ts +41 -0
  89. package/dist/composables/useDataTableSelection.js +73 -0
  90. package/dist/composables/useDatabaseDetailWorkspace.d.ts +67 -0
  91. package/dist/composables/useDatabaseDetailWorkspace.js +150 -0
  92. package/dist/composables/useDatabaseView.d.ts +3 -137
  93. package/dist/composables/useDatabaseWorkspace.d.ts +31 -0
  94. package/dist/composables/useDatabaseWorkspace.js +89 -0
  95. package/dist/composables/useTableToolbarPanels.d.ts +19 -0
  96. package/dist/composables/useTableToolbarPanels.js +53 -0
  97. package/dist/contracts/database.d.ts +252 -0
  98. package/dist/index.d.ts +6 -0
  99. package/dist/index.js +261 -248
  100. package/dist/plugin.d.ts +2 -0
  101. package/dist/plugin.js +10 -261
  102. package/dist/registry/plugin-components.d.ts +291 -0
  103. package/dist/registry/plugin-components.js +114 -0
  104. package/dist/style.css +1 -1
  105. package/dist/types/data-table.d.ts +27 -0
  106. package/dist/types/data-table.js +29 -0
  107. package/package.json +1 -1
package/dist/plugin.js CHANGED
@@ -1,269 +1,18 @@
1
- import { defineAsyncComponent as i } from "vue";
1
+ import { registerOneUIComponents as e } from "./registry/plugin-components.js";
2
+ import { pluginComponentNames as f, pluginComponentRegistry as d } from "./registry/plugin-components.js";
2
3
  /* empty css */
3
4
  /* empty css */
4
5
  /* empty css */
5
6
  /* empty css */
6
- function t(n, r) {
7
- const o = i(() => n().then((e) => e.default));
8
- return o.name = r, o;
9
- }
10
- const a = t(() => import("./components/base/ViewTab.vue.js"), "ViewTab"), s = t(() => import("./components/base/ToolbarBtn.vue.js"), "ToolbarBtn"), m = t(() => import("./components/base/AddViewBtn.vue.js"), "AddViewBtn"), c = t(() => import("./components/base/Badge.vue.js"), "Badge"), p = t(() => import("./components/base/RangeSlider.vue.js"), "RangeSlider"), l = t(() => import("./components/base/ProgressBar.vue.js"), "ProgressBar"), d = t(() => import("./components/base/ButtonGroup.vue.js"), "ButtonGroup"), u = t(() => import("./components/base/EmptyState.vue.js"), "EmptyState"), b = t(
11
- () => import("./components/base/StatisticCard.vue.js"),
12
- "StatisticCard"
13
- ), C = t(
14
- () => import("./components/base/DropdownMenu.vue.js"),
15
- "DropdownMenu"
16
- ), T = t(
17
- () => import("./components/base/StatusIndicator.vue.js"),
18
- "StatusIndicator"
19
- ), w = t(() => import("./components/base/Switch.vue.js"), "Switch"), B = t(() => import("./components/base/Stepper.vue.js"), "Stepper"), S = t(() => import("./components/base/Accordion.vue.js"), "Accordion"), g = t(() => import("./components/base/Avatar.vue.js"), "Avatar"), h = t(() => import("./components/base/RefTag.vue.js"), "RefTag"), P = t(() => import("./components/base/DescBlock.vue.js"), "DescBlock"), M = t(
20
- () => import("./components/base/ViewModeGroup.vue.js"),
21
- "ViewModeGroup"
22
- ), A = t(
23
- () => import("./components/base/ViewSwitcher.vue.js"),
24
- "ViewSwitcher"
25
- ), D = t(
26
- () => import("./components/base/SelectBadge.vue.js"),
27
- "SelectBadge"
28
- ), R = t(() => import("./components/base/ChainItem.vue.js"), "ChainItem"), k = t(
29
- () => import("./components/base/SectionBlock.vue.js"),
30
- "SectionBlock"
31
- ), y = t(
32
- () => import("./components/base/MonitorItem.vue.js"),
33
- "MonitorItem"
34
- ), I = t(
35
- () => import("./components/base/StatusSummary.vue.js"),
36
- "StatusSummary"
37
- ), G = t(() => import("./components/base/InfoCard.vue.js"), "InfoCard"), f = t(
38
- () => import("./components/base/PersonaCard.vue.js"),
39
- "PersonaCard"
40
- ), F = t(
41
- () => import("./components/base/SearchHighlight.vue.js"),
42
- "SearchHighlight"
43
- ), V = t(() => import("./components/layout/AppLayout.vue.js"), "AppLayout"), v = t(() => import("./components/layout/Navbar.vue.js"), "Navbar"), L = t(() => import("./components/layout/Sidebar.vue.js"), "Sidebar"), H = t(() => import("./components/layout/StatusBar.vue.js"), "StatusBar"), K = t(() => import("./components/overlay/Modal.vue.js"), "Modal"), N = t(() => import("./components/overlay/Dialog.vue.js"), "Dialog"), x = t(() => import("./components/overlay/Drawer.vue.js"), "Drawer"), E = t(() => import("./components/overlay/SidePanel.vue.js"), "SidePanel"), U = t(
44
- () => import("./components/toast/ToastContainer.vue3.js"),
45
- "ToastContainer"
46
- ), Q = t(() => import("./components/toast/ToastItem.vue.js"), "ToastItem"), _ = t(() => import("./components/tabs/Tabs.vue.js"), "Tabs"), z = t(() => import("./components/tabs/TabPanel.vue.js"), "TabPanel"), O = t(
47
- () => import("./components/breadcrumb/Breadcrumb.vue.js"),
48
- "Breadcrumb"
49
- ), j = t(
50
- () => import("./components/breadcrumb/BreadcrumbItem.vue.js"),
51
- "BreadcrumbItem"
52
- ), q = t(() => import("./components/table/DataTable.vue.js"), "DataTable"), J = t(
53
- () => import("./components/table/TableHeaderRow.vue.js"),
54
- "TableHeaderRow"
55
- ), W = t(
56
- () => import("./components/table/TableDataRow.vue.js"),
57
- "TableDataRow"
58
- ), X = t(
59
- () => import("./components/table/TableGroupRow.vue.js"),
60
- "TableGroupRow"
61
- ), Y = t(() => import("./components/table/NewRowBtn.vue.js"), "NewRowBtn"), Z = t(
62
- () => import("./components/table/TableFilterPanel.vue.js"),
63
- "TableFilterPanel"
64
- ), $ = t(
65
- () => import("./components/table/TableColumnManager.vue.js"),
66
- "TableColumnManager"
67
- ), tt = t(
68
- () => import("./components/table/TableToolbar.vue.js"),
69
- "TableToolbar"
70
- ), ot = t(() => import("./components/table/FieldCell.vue.js"), "FieldCell"), rt = t(
71
- () => import("./components/table/FieldTypePicker.vue.js"),
72
- "FieldTypePicker"
73
- ), nt = t(
74
- () => import("./components/table/ColumnHeaderMenu.vue.js"),
75
- "ColumnHeaderMenu"
76
- ), et = t(
77
- () => import("./components/field/FieldMarkdownPreview.vue.js"),
78
- "FieldMarkdownPreview"
79
- ), it = t(
80
- () => import("./components/kanban/KanbanBoard.vue.js"),
81
- "KanbanBoard"
82
- ), at = t(
83
- () => import("./components/kanban/KanbanColumn.vue.js"),
84
- "KanbanColumn"
85
- ), st = t(
86
- () => import("./components/kanban/KanbanCard.vue.js"),
87
- "KanbanCard"
88
- ), mt = t(
89
- () => import("./components/kanban/QuickAddRow.vue.js"),
90
- "QuickAddRow"
91
- ), ct = t(
92
- () => import("./components/gallery/GalleryView.vue.js"),
93
- "GalleryView"
94
- ), pt = t(
95
- () => import("./components/gallery/GalleryCard.vue.js"),
96
- "GalleryCard"
97
- ), lt = t(
98
- () => import("./components/timeline/ActivityTimeline.vue.js"),
99
- "ActivityTimeline"
100
- ), dt = t(
101
- () => import("./components/timeline/GanttTimeline.vue.js"),
102
- "GanttTimeline"
103
- ), ut = t(() => import("./components/timeline/GanttRow.vue.js"), "GanttRow"), bt = t(
104
- () => import("./components/editor/ContentBlock.vue.js"),
105
- "ContentBlock"
106
- ), Ct = t(
107
- () => import("./components/editor/BlockQuote.vue.js"),
108
- "BlockQuote"
109
- ), Tt = t(() => import("./components/editor/CodeBlock.vue.js"), "CodeBlock"), wt = t(() => import("./components/editor/RefLink.vue.js"), "RefLink"), Bt = t(
110
- () => import("./components/editor/RichTextEditor.vue.js"),
111
- "RichTextEditor"
112
- ), St = t(
113
- () => import("./components/form/FormDesigner.vue.js"),
114
- "FormDesigner"
115
- ), gt = t(
116
- () => import("./components/database/DatabaseView.vue.js"),
117
- "DatabaseView"
118
- ), ht = t(
119
- () => import("./components/auxiliary/ColorPanel.vue.js"),
120
- "ColorPanel"
121
- ), Pt = t(
122
- () => import("./components/auxiliary/PersonPanel.vue.js"),
123
- "PersonPanel"
124
- ), Mt = t(
125
- () => import("./components/auxiliary/FileUpload.vue.js"),
126
- "FileUpload"
127
- ), At = t(
128
- () => import("./components/detail/DetailLayout.vue.js"),
129
- "DetailLayout"
130
- ), Dt = t(() => import("./components/detail/PropPanel.vue.js"), "PropPanel"), Rt = t(() => import("./components/detail/PropRow.vue.js"), "PropRow"), kt = t(
131
- () => import("./components/detail/CommentItem.vue.js"),
132
- "CommentItem"
133
- ), yt = t(() => import("./components/Dashboard/index.vue.js"), "Dashboard"), It = t(
134
- () => import("./components/Dashboard/charts/BarChart.vue.js"),
135
- "BarChart"
136
- ), Gt = t(
137
- () => import("./components/Dashboard/charts/PieChart.vue.js"),
138
- "PieChart"
139
- ), ft = t(
140
- () => import("./components/Dashboard/charts/DoughnutChart.vue2.js"),
141
- "DoughnutChart"
142
- ), Ft = t(
143
- () => import("./components/Dashboard/charts/NumberCard.vue.js"),
144
- "NumberCard"
145
- ), Vt = t(
146
- () => import("./components/Dashboard/charts/TableChart.vue.js"),
147
- "TableChart"
148
- ), vt = t(() => import("./components/ai/AiThinking.vue.js"), "AiThinking"), Lt = t(
149
- () => import("./components/ai/AiStreamingCursor.vue.js"),
150
- "AiStreamingCursor"
151
- ), Ht = t(
152
- () => import("./components/ai/AiMessageBubble.vue.js"),
153
- "AiMessageBubble"
154
- ), Kt = t(
155
- () => import("./components/ai/UserMessageBubble.vue.js"),
156
- "UserMessageBubble"
157
- ), Nt = t(
158
- () => import("./components/ai/AiMessageList.vue.js"),
159
- "AiMessageList"
160
- ), xt = t(() => import("./components/ai/AiSender.vue.js"), "AiSender"), Et = t(
161
- () => import("./components/mermaid/MermaidChart.vue.js"),
162
- "MermaidChart"
163
- ), Ut = t(() => import("./components/split/SplitPane.vue.js"), "SplitPane"), Qt = t(
164
- () => import("./components/ContextMenu/index.vue.js"),
165
- "ContextMenu"
166
- ), _t = [
167
- a,
168
- s,
169
- m,
170
- c,
171
- p,
172
- l,
173
- d,
174
- u,
175
- b,
176
- C,
177
- T,
178
- w,
179
- B,
180
- S,
181
- g,
182
- V,
183
- v,
184
- L,
185
- H,
186
- q,
187
- J,
188
- W,
189
- X,
190
- Y,
191
- Z,
192
- $,
193
- tt,
194
- ot,
195
- rt,
196
- nt,
197
- et,
198
- it,
199
- at,
200
- st,
201
- mt,
202
- ct,
203
- pt,
204
- lt,
205
- dt,
206
- ut,
207
- bt,
208
- Ct,
209
- Tt,
210
- wt,
211
- Bt,
212
- St,
213
- gt,
214
- ht,
215
- Pt,
216
- Mt,
217
- At,
218
- Dt,
219
- Rt,
220
- kt,
221
- yt,
222
- It,
223
- Gt,
224
- ft,
225
- Ft,
226
- Vt,
227
- vt,
228
- Lt,
229
- Ht,
230
- Kt,
231
- Nt,
232
- xt,
233
- K,
234
- N,
235
- x,
236
- E,
237
- U,
238
- Q,
239
- _,
240
- z,
241
- O,
242
- j,
243
- Et,
244
- Ut,
245
- h,
246
- P,
247
- M,
248
- A,
249
- Qt,
250
- D,
251
- R,
252
- k,
253
- y,
254
- I,
255
- G,
256
- f,
257
- F
258
- ], Wt = {
259
- install(n) {
260
- _t.forEach((r) => {
261
- const o = r;
262
- n.component(o.name || o.__name || "", r);
263
- });
7
+ const o = /* @__PURE__ */ new WeakSet(), p = {
8
+ install(t) {
9
+ o.has(t) || (o.add(t), e(t));
264
10
  }
265
11
  };
266
12
  export {
267
- Wt as OneflowUI,
268
- Wt as default
13
+ p as OneflowUI,
14
+ p as default,
15
+ f as pluginComponentNames,
16
+ d as pluginComponentRegistry,
17
+ e as registerOneUIComponents
269
18
  };
@@ -0,0 +1,291 @@
1
+ import { App, Component } from 'vue';
2
+ type AsyncModule = {
3
+ default: Component;
4
+ };
5
+ type ComponentLoader = () => Promise<AsyncModule>;
6
+ export interface PluginComponentEntry {
7
+ name: string;
8
+ loader: ComponentLoader;
9
+ }
10
+ export declare const pluginComponentRegistry: readonly [{
11
+ readonly name: "ViewTab";
12
+ readonly loader: () => Promise<typeof import("../components/base/ViewTab.vue")>;
13
+ }, {
14
+ readonly name: "ToolbarBtn";
15
+ readonly loader: () => Promise<typeof import("../components/base/ToolbarBtn.vue")>;
16
+ }, {
17
+ readonly name: "AddViewBtn";
18
+ readonly loader: () => Promise<typeof import("../components/base/AddViewBtn.vue")>;
19
+ }, {
20
+ readonly name: "Badge";
21
+ readonly loader: () => Promise<typeof import("../components/base/Badge.vue")>;
22
+ }, {
23
+ readonly name: "RangeSlider";
24
+ readonly loader: () => Promise<typeof import("../components/base/RangeSlider.vue")>;
25
+ }, {
26
+ readonly name: "ProgressBar";
27
+ readonly loader: () => Promise<typeof import("../components/base/ProgressBar.vue")>;
28
+ }, {
29
+ readonly name: "ButtonGroup";
30
+ readonly loader: () => Promise<typeof import("../components/base/ButtonGroup.vue")>;
31
+ }, {
32
+ readonly name: "EmptyState";
33
+ readonly loader: () => Promise<typeof import("../components/base/EmptyState.vue")>;
34
+ }, {
35
+ readonly name: "StatisticCard";
36
+ readonly loader: () => Promise<typeof import("../components/base/StatisticCard.vue")>;
37
+ }, {
38
+ readonly name: "DropdownMenu";
39
+ readonly loader: () => Promise<typeof import("../components/base/DropdownMenu.vue")>;
40
+ }, {
41
+ readonly name: "StatusIndicator";
42
+ readonly loader: () => Promise<typeof import("../components/base/StatusIndicator.vue")>;
43
+ }, {
44
+ readonly name: "Switch";
45
+ readonly loader: () => Promise<typeof import("../components/base/Switch.vue")>;
46
+ }, {
47
+ readonly name: "Stepper";
48
+ readonly loader: () => Promise<typeof import("../components/base/Stepper.vue")>;
49
+ }, {
50
+ readonly name: "Accordion";
51
+ readonly loader: () => Promise<typeof import("../components/base/Accordion.vue")>;
52
+ }, {
53
+ readonly name: "Avatar";
54
+ readonly loader: () => Promise<typeof import("../components/base/Avatar.vue")>;
55
+ }, {
56
+ readonly name: "RefTag";
57
+ readonly loader: () => Promise<typeof import("../components/base/RefTag.vue")>;
58
+ }, {
59
+ readonly name: "DescBlock";
60
+ readonly loader: () => Promise<typeof import("../components/base/DescBlock.vue")>;
61
+ }, {
62
+ readonly name: "ViewModeGroup";
63
+ readonly loader: () => Promise<typeof import("../components/base/ViewModeGroup.vue")>;
64
+ }, {
65
+ readonly name: "ViewSwitcher";
66
+ readonly loader: () => Promise<typeof import("../components/base/ViewSwitcher.vue")>;
67
+ }, {
68
+ readonly name: "SelectBadge";
69
+ readonly loader: () => Promise<typeof import("../components/base/SelectBadge.vue")>;
70
+ }, {
71
+ readonly name: "ChainItem";
72
+ readonly loader: () => Promise<typeof import("../components/base/ChainItem.vue")>;
73
+ }, {
74
+ readonly name: "SectionBlock";
75
+ readonly loader: () => Promise<typeof import("../components/base/SectionBlock.vue")>;
76
+ }, {
77
+ readonly name: "MonitorItem";
78
+ readonly loader: () => Promise<typeof import("../components/base/MonitorItem.vue")>;
79
+ }, {
80
+ readonly name: "StatusSummary";
81
+ readonly loader: () => Promise<typeof import("../components/base/StatusSummary.vue")>;
82
+ }, {
83
+ readonly name: "InfoCard";
84
+ readonly loader: () => Promise<typeof import("../components/base/InfoCard.vue")>;
85
+ }, {
86
+ readonly name: "PersonaCard";
87
+ readonly loader: () => Promise<typeof import("../components/base/PersonaCard.vue")>;
88
+ }, {
89
+ readonly name: "SearchHighlight";
90
+ readonly loader: () => Promise<typeof import("../components/base/SearchHighlight.vue")>;
91
+ }, {
92
+ readonly name: "AppLayout";
93
+ readonly loader: () => Promise<typeof import("../components/layout/AppLayout.vue")>;
94
+ }, {
95
+ readonly name: "Navbar";
96
+ readonly loader: () => Promise<typeof import("../components/layout/Navbar.vue")>;
97
+ }, {
98
+ readonly name: "Sidebar";
99
+ readonly loader: () => Promise<typeof import("../components/layout/Sidebar.vue")>;
100
+ }, {
101
+ readonly name: "StatusBar";
102
+ readonly loader: () => Promise<typeof import("../components/layout/StatusBar.vue")>;
103
+ }, {
104
+ readonly name: "Modal";
105
+ readonly loader: () => Promise<typeof import("../components/overlay/Modal.vue")>;
106
+ }, {
107
+ readonly name: "Dialog";
108
+ readonly loader: () => Promise<typeof import("../components/overlay/Dialog.vue")>;
109
+ }, {
110
+ readonly name: "Drawer";
111
+ readonly loader: () => Promise<typeof import("../components/overlay/Drawer.vue")>;
112
+ }, {
113
+ readonly name: "SidePanel";
114
+ readonly loader: () => Promise<typeof import("../components/overlay/SidePanel.vue")>;
115
+ }, {
116
+ readonly name: "ToastContainer";
117
+ readonly loader: () => Promise<typeof import("../components/toast/ToastContainer.vue")>;
118
+ }, {
119
+ readonly name: "ToastItem";
120
+ readonly loader: () => Promise<typeof import("../components/toast/ToastItem.vue")>;
121
+ }, {
122
+ readonly name: "Tabs";
123
+ readonly loader: () => Promise<typeof import("../components/tabs/Tabs.vue")>;
124
+ }, {
125
+ readonly name: "TabPanel";
126
+ readonly loader: () => Promise<typeof import("../components/tabs/TabPanel.vue")>;
127
+ }, {
128
+ readonly name: "Breadcrumb";
129
+ readonly loader: () => Promise<typeof import("../components/breadcrumb/Breadcrumb.vue")>;
130
+ }, {
131
+ readonly name: "BreadcrumbItem";
132
+ readonly loader: () => Promise<typeof import("../components/breadcrumb/BreadcrumbItem.vue")>;
133
+ }, {
134
+ readonly name: "DataTable";
135
+ readonly loader: () => Promise<typeof import("../components/table/DataTable.vue")>;
136
+ }, {
137
+ readonly name: "TableHeaderRow";
138
+ readonly loader: () => Promise<typeof import("../components/table/TableHeaderRow.vue")>;
139
+ }, {
140
+ readonly name: "TableDataRow";
141
+ readonly loader: () => Promise<typeof import("../components/table/TableDataRow.vue")>;
142
+ }, {
143
+ readonly name: "TableGroupRow";
144
+ readonly loader: () => Promise<typeof import("../components/table/TableGroupRow.vue")>;
145
+ }, {
146
+ readonly name: "NewRowBtn";
147
+ readonly loader: () => Promise<typeof import("../components/table/NewRowBtn.vue")>;
148
+ }, {
149
+ readonly name: "TableFilterPanel";
150
+ readonly loader: () => Promise<typeof import("../components/table/TableFilterPanel.vue")>;
151
+ }, {
152
+ readonly name: "TableColumnManager";
153
+ readonly loader: () => Promise<typeof import("../components/table/TableColumnManager.vue")>;
154
+ }, {
155
+ readonly name: "TableToolbar";
156
+ readonly loader: () => Promise<typeof import("../components/table/TableToolbar.vue")>;
157
+ }, {
158
+ readonly name: "FieldCell";
159
+ readonly loader: () => Promise<typeof import("../components/table/FieldCell.vue")>;
160
+ }, {
161
+ readonly name: "FieldTypePicker";
162
+ readonly loader: () => Promise<typeof import("../components/table/FieldTypePicker.vue")>;
163
+ }, {
164
+ readonly name: "ColumnHeaderMenu";
165
+ readonly loader: () => Promise<typeof import("../components/table/ColumnHeaderMenu.vue")>;
166
+ }, {
167
+ readonly name: "FieldMarkdownPreview";
168
+ readonly loader: () => Promise<typeof import("../components/field/FieldMarkdownPreview.vue")>;
169
+ }, {
170
+ readonly name: "KanbanBoard";
171
+ readonly loader: () => Promise<typeof import("../components/kanban/KanbanBoard.vue")>;
172
+ }, {
173
+ readonly name: "KanbanColumn";
174
+ readonly loader: () => Promise<typeof import("../components/kanban/KanbanColumn.vue")>;
175
+ }, {
176
+ readonly name: "KanbanCard";
177
+ readonly loader: () => Promise<typeof import("../components/kanban/KanbanCard.vue")>;
178
+ }, {
179
+ readonly name: "QuickAddRow";
180
+ readonly loader: () => Promise<typeof import("../components/kanban/QuickAddRow.vue")>;
181
+ }, {
182
+ readonly name: "GalleryView";
183
+ readonly loader: () => Promise<typeof import("../components/gallery/GalleryView.vue")>;
184
+ }, {
185
+ readonly name: "GalleryCard";
186
+ readonly loader: () => Promise<typeof import("../components/gallery/GalleryCard.vue")>;
187
+ }, {
188
+ readonly name: "ActivityTimeline";
189
+ readonly loader: () => Promise<typeof import("../components/timeline/ActivityTimeline.vue")>;
190
+ }, {
191
+ readonly name: "GanttTimeline";
192
+ readonly loader: () => Promise<typeof import("../components/timeline/GanttTimeline.vue")>;
193
+ }, {
194
+ readonly name: "GanttRow";
195
+ readonly loader: () => Promise<typeof import("../components/timeline/GanttRow.vue")>;
196
+ }, {
197
+ readonly name: "ContentBlock";
198
+ readonly loader: () => Promise<typeof import("../components/editor/ContentBlock.vue")>;
199
+ }, {
200
+ readonly name: "BlockQuote";
201
+ readonly loader: () => Promise<typeof import("../components/editor/BlockQuote.vue")>;
202
+ }, {
203
+ readonly name: "CodeBlock";
204
+ readonly loader: () => Promise<typeof import("../components/editor/CodeBlock.vue")>;
205
+ }, {
206
+ readonly name: "RefLink";
207
+ readonly loader: () => Promise<typeof import("../components/editor/RefLink.vue")>;
208
+ }, {
209
+ readonly name: "RichTextEditor";
210
+ readonly loader: () => Promise<typeof import("../components/editor/RichTextEditor.vue")>;
211
+ }, {
212
+ readonly name: "FormDesigner";
213
+ readonly loader: () => Promise<typeof import("../components/form/FormDesigner.vue")>;
214
+ }, {
215
+ readonly name: "DatabaseView";
216
+ readonly loader: () => Promise<typeof import("../components/database/DatabaseView.vue")>;
217
+ }, {
218
+ readonly name: "ColorPanel";
219
+ readonly loader: () => Promise<typeof import("../components/auxiliary/ColorPanel.vue")>;
220
+ }, {
221
+ readonly name: "PersonPanel";
222
+ readonly loader: () => Promise<typeof import("../components/auxiliary/PersonPanel.vue")>;
223
+ }, {
224
+ readonly name: "FileUpload";
225
+ readonly loader: () => Promise<typeof import("../components/auxiliary/FileUpload.vue")>;
226
+ }, {
227
+ readonly name: "DetailLayout";
228
+ readonly loader: () => Promise<typeof import("../components/detail/DetailLayout.vue")>;
229
+ }, {
230
+ readonly name: "PropPanel";
231
+ readonly loader: () => Promise<typeof import("../components/detail/PropPanel.vue")>;
232
+ }, {
233
+ readonly name: "PropRow";
234
+ readonly loader: () => Promise<typeof import("../components/detail/PropRow.vue")>;
235
+ }, {
236
+ readonly name: "CommentItem";
237
+ readonly loader: () => Promise<typeof import("../components/detail/CommentItem.vue")>;
238
+ }, {
239
+ readonly name: "Dashboard";
240
+ readonly loader: () => Promise<typeof import("../components/Dashboard/index.vue")>;
241
+ }, {
242
+ readonly name: "BarChart";
243
+ readonly loader: () => Promise<typeof import("../components/Dashboard/charts/BarChart.vue")>;
244
+ }, {
245
+ readonly name: "PieChart";
246
+ readonly loader: () => Promise<typeof import("../components/Dashboard/charts/PieChart.vue")>;
247
+ }, {
248
+ readonly name: "DoughnutChart";
249
+ readonly loader: () => Promise<typeof import("../components/Dashboard/charts/DoughnutChart.vue")>;
250
+ }, {
251
+ readonly name: "NumberCard";
252
+ readonly loader: () => Promise<typeof import("../components/Dashboard/charts/NumberCard.vue")>;
253
+ }, {
254
+ readonly name: "TableChart";
255
+ readonly loader: () => Promise<typeof import("../components/Dashboard/charts/TableChart.vue")>;
256
+ }, {
257
+ readonly name: "AiThinking";
258
+ readonly loader: () => Promise<typeof import("../components/ai/AiThinking.vue")>;
259
+ }, {
260
+ readonly name: "AiStreamingCursor";
261
+ readonly loader: () => Promise<typeof import("../components/ai/AiStreamingCursor.vue")>;
262
+ }, {
263
+ readonly name: "AiMessageBubble";
264
+ readonly loader: () => Promise<typeof import("../components/ai/AiMessageBubble.vue")>;
265
+ }, {
266
+ readonly name: "UserMessageBubble";
267
+ readonly loader: () => Promise<typeof import("../components/ai/UserMessageBubble.vue")>;
268
+ }, {
269
+ readonly name: "AiMessageList";
270
+ readonly loader: () => Promise<typeof import("../components/ai/AiMessageList.vue")>;
271
+ }, {
272
+ readonly name: "AiSender";
273
+ readonly loader: () => Promise<typeof import("../components/ai/AiSender.vue")>;
274
+ }, {
275
+ readonly name: "MermaidChart";
276
+ readonly loader: () => Promise<typeof import("../components/mermaid/MermaidChart.vue")>;
277
+ }, {
278
+ readonly name: "SplitPane";
279
+ readonly loader: () => Promise<typeof import("../components/split/SplitPane.vue")>;
280
+ }, {
281
+ readonly name: "ContextMenu";
282
+ readonly loader: () => Promise<typeof import("../components/ContextMenu/index.vue")>;
283
+ }];
284
+ export declare const pluginComponentNames: ("ViewTab" | "ToolbarBtn" | "AddViewBtn" | "Badge" | "RangeSlider" | "ProgressBar" | "ButtonGroup" | "EmptyState" | "StatisticCard" | "DropdownMenu" | "StatusIndicator" | "Switch" | "Stepper" | "Accordion" | "Avatar" | "DescBlock" | "ViewModeGroup" | "ViewSwitcher" | "RefTag" | "SelectBadge" | "ChainItem" | "SectionBlock" | "StatusSummary" | "InfoCard" | "MonitorItem" | "PersonaCard" | "SearchHighlight" | "AppLayout" | "Navbar" | "Sidebar" | "StatusBar" | "FieldMarkdownPreview" | "TableHeaderRow" | "TableDataRow" | "TableGroupRow" | "NewRowBtn" | "FieldCell" | "FieldTypePicker" | "ColumnHeaderMenu" | "DataTable" | "TableFilterPanel" | "TableColumnManager" | "TableToolbar" | "Modal" | "Dialog" | "Drawer" | "SidePanel" | "ToastItem" | "ToastContainer" | "Tabs" | "TabPanel" | "Breadcrumb" | "BreadcrumbItem" | "KanbanCard" | "KanbanColumn" | "QuickAddRow" | "KanbanBoard" | "GalleryCard" | "GalleryView" | "ActivityTimeline" | "GanttRow" | "GanttTimeline" | "ContentBlock" | "BlockQuote" | "CodeBlock" | "RefLink" | "RichTextEditor" | "FormDesigner" | "PropRow" | "PropPanel" | "CommentItem" | "DetailLayout" | "DatabaseView" | "ColorPanel" | "PersonPanel" | "FileUpload" | "BarChart" | "PieChart" | "DoughnutChart" | "NumberCard" | "TableChart" | "Dashboard" | "AiThinking" | "AiStreamingCursor" | "AiMessageBubble" | "UserMessageBubble" | "AiMessageList" | "AiSender" | "MermaidChart" | "SplitPane" | "ContextMenu")[];
285
+ export declare const pluginComponents: (Component & {
286
+ name?: string;
287
+ __name?: string;
288
+ })[];
289
+ export declare function registerOneUIComponents(app: App): void;
290
+ export declare const installPluginComponents: typeof registerOneUIComponents;
291
+ export {};