@oneflowui/ui 0.8.4 → 0.8.5
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.en.md +219 -0
- package/README.md +219 -0
- package/dist/components/ai/AiMessageList.vue.js +1 -1
- package/dist/components/ai/AiMessageList.vue2.js +28 -27
- package/dist/components/common/ThemeScope.vue.d.ts +24 -0
- package/dist/components/common/ThemeScope.vue.js +24 -0
- package/dist/components/common/ThemeScope.vue2.js +4 -0
- package/dist/components/common/index.d.ts +1 -0
- package/dist/components/database/DatabaseView.vue.d.ts +4 -4
- package/dist/components/database/DatabaseView.vue.js +4 -4
- package/dist/components/database/DatabaseView.vue2.js +135 -134
- package/dist/components/database/index.d.ts +1 -1
- package/dist/components/kanban/KanbanColumn.vue.js +3 -3
- package/dist/components/kanban/KanbanColumn.vue2.js +31 -30
- package/dist/components/table/DataTable.vue.js +2 -2
- package/dist/components/table/DataTable.vue2.js +251 -249
- package/dist/composables/index.d.ts +5 -3
- package/dist/composables/useDataTableLayout.d.ts +1 -0
- package/dist/composables/useDataTableLayout.js +29 -26
- package/dist/composables/useDatabaseView.d.ts +1 -1
- package/dist/composables/useDatabaseView.js +311 -284
- package/dist/composables/useDatabaseViewMiddleware.d.ts +33 -0
- package/dist/composables/useDatabaseViewMiddleware.js +131 -0
- package/dist/composables/useVirtualList.d.ts +11 -0
- package/dist/composables/useVirtualList.js +146 -104
- package/dist/composables.js +71 -0
- package/dist/contracts/database.d.ts +23 -0
- package/dist/index.d.ts +6 -3
- package/dist/index.js +259 -250
- package/dist/style.css +1 -1
- package/dist/theme.d.ts +1 -0
- package/dist/theme.js +4 -0
- package/package.json +16 -2
package/dist/index.js
CHANGED
|
@@ -1,264 +1,273 @@
|
|
|
1
|
-
import { default as
|
|
2
|
-
import { installPluginComponents as f, pluginComponentNames as
|
|
1
|
+
import { default as o } from "./components/field/FieldMarkdownPreview.vue.js";
|
|
2
|
+
import { installPluginComponents as f, pluginComponentNames as s, pluginComponentRegistry as l, registerOneUIComponents as m } from "./registry/plugin-components.js";
|
|
3
3
|
import { default as d } from "./components/ContextMenu/index.vue.js";
|
|
4
|
-
import { buildGalleryItems as x, buildGanttItems as i, buildKanbanColumns as n, dataRecordToTask as
|
|
5
|
-
import { dataRecordToRow as
|
|
6
|
-
import { fetchSchemaFromSupabase as P, humanizeColumnName as
|
|
7
|
-
import {
|
|
8
|
-
import {
|
|
9
|
-
import {
|
|
10
|
-
import {
|
|
11
|
-
import {
|
|
12
|
-
import {
|
|
13
|
-
import {
|
|
14
|
-
import {
|
|
15
|
-
import {
|
|
16
|
-
import {
|
|
17
|
-
import {
|
|
18
|
-
import {
|
|
19
|
-
import {
|
|
20
|
-
import {
|
|
21
|
-
import {
|
|
22
|
-
import {
|
|
23
|
-
import {
|
|
24
|
-
import {
|
|
25
|
-
import {
|
|
26
|
-
import {
|
|
27
|
-
import {
|
|
28
|
-
import {
|
|
29
|
-
import {
|
|
30
|
-
import {
|
|
31
|
-
import {
|
|
4
|
+
import { buildGalleryItems as x, buildGanttItems as i, buildKanbanColumns as n, dataRecordToTask as c, isFormulaField as b, isSelectField as T, taskToDataRecord as w } from "./types/index.js";
|
|
5
|
+
import { dataRecordToRow as C, fieldsToRow as D, rowToDataRecord as g, rowsToDataRecords as h, useSupabaseAdapter as R } from "./utils/supabaseAdapter.js";
|
|
6
|
+
import { fetchSchemaFromSupabase as P, humanizeColumnName as M, inferSchema as A } from "./utils/supabaseSchema.js";
|
|
7
|
+
import { DEFAULT_PRIORITY_MAP as V, DEFAULT_STATUS_MAP as y, mergeColorMap as F, resolveBadge as I, useBadge as L } from "./composables/useBadge.js";
|
|
8
|
+
import { useStream as v } from "./composables/useStream.js";
|
|
9
|
+
import { useTypewriter as N } from "./composables/useTypewriter.js";
|
|
10
|
+
import { useAiChat as K } from "./composables/useAiChat.js";
|
|
11
|
+
import { useTableFilter as H } from "./composables/useTableFilter.js";
|
|
12
|
+
import { useTable as z } from "./composables/useTable.js";
|
|
13
|
+
import { useMarkdown as W } from "./composables/useMarkdown.js";
|
|
14
|
+
import { useInlineEdit as j } from "./composables/useInlineEdit.js";
|
|
15
|
+
import { createVirtualListState as J, useVirtualList as X, useVirtualListStateCache as Z } from "./composables/useVirtualList.js";
|
|
16
|
+
import { useToast as ee } from "./composables/useToast.js";
|
|
17
|
+
import { useColumnResize as re } from "./composables/useColumnResize.js";
|
|
18
|
+
import { useFixedColumns as te } from "./composables/useFixedColumns.js";
|
|
19
|
+
import { useKeyboardNavigation as se } from "./composables/useKeyboardNavigation.js";
|
|
20
|
+
import { useRowDrag as me } from "./composables/useRowDrag.js";
|
|
21
|
+
import { useDraftRows as de } from "./composables/useDraftRows.js";
|
|
22
|
+
import { useWorkerSort as xe } from "./composables/useWorkerSort.js";
|
|
23
|
+
import { useDataTableSelection as ne } from "./composables/useDataTableSelection.js";
|
|
24
|
+
import { buildDetailSheetCellEditPayloads as be, useDataTableDetailSheet as Te } from "./composables/useDataTableDetailSheet.js";
|
|
25
|
+
import { useSchemaEngine as Se } from "./composables/useSchemaEngine.js";
|
|
26
|
+
import { useSupabaseProvider as De } from "./composables/useSupabaseProvider.js";
|
|
27
|
+
import { createLocalStorageBackend as he, createSupabaseBackend as Re, useViewPersistence as Be } from "./composables/useViewPersistence.js";
|
|
28
|
+
import { useDatabaseView as Me } from "./composables/useDatabaseView.js";
|
|
29
|
+
import { composeDatabaseViewMiddlewares as ke, createDatabaseViewAnalyticsMiddleware as Ve, createDatabaseViewOptimisticMiddleware as ye, createDatabaseViewToastMiddleware as Fe } from "./composables/useDatabaseViewMiddleware.js";
|
|
30
|
+
import { useDatabaseViewport as Le, useDatabaseWorkspaceState as Ge } from "./composables/useDatabaseWorkspace.js";
|
|
31
|
+
import { useSearch as Ee } from "./composables/useSearch.js";
|
|
32
|
+
import { default as Ue } from "./components/Dashboard/charts/DoughnutChart.vue.js";
|
|
33
|
+
import { default as _e } from "./components/common/ThemeScope.vue.js";
|
|
34
|
+
import { default as Oe } from "./components/toast/ToastContainer.vue.js";
|
|
32
35
|
/* empty css */
|
|
33
|
-
import { default as
|
|
34
|
-
import { default as
|
|
35
|
-
import { default as
|
|
36
|
-
import { default as
|
|
37
|
-
import { default as
|
|
38
|
-
import { default as
|
|
39
|
-
import { default as
|
|
40
|
-
import { default as
|
|
41
|
-
import { default as
|
|
42
|
-
import { default as
|
|
43
|
-
import { default as
|
|
44
|
-
import { default as
|
|
45
|
-
import { default as
|
|
46
|
-
import { default as
|
|
47
|
-
import { default as
|
|
48
|
-
import { default as
|
|
49
|
-
import { default as
|
|
50
|
-
import { default as
|
|
51
|
-
import { default as
|
|
52
|
-
import { default as
|
|
53
|
-
import { default as
|
|
54
|
-
import { default as
|
|
55
|
-
import {
|
|
56
|
-
import { default as
|
|
57
|
-
import { default as
|
|
58
|
-
import { default as
|
|
59
|
-
import { default as
|
|
60
|
-
import { default as
|
|
61
|
-
import { default as
|
|
62
|
-
import { default as
|
|
63
|
-
import { default as
|
|
64
|
-
import { default as
|
|
65
|
-
import { default as
|
|
66
|
-
import { default as
|
|
67
|
-
import { default as
|
|
68
|
-
import { default as
|
|
69
|
-
import { default as
|
|
70
|
-
import { default as
|
|
71
|
-
import { default as
|
|
72
|
-
import { default as
|
|
73
|
-
import { default as
|
|
74
|
-
import { default as
|
|
75
|
-
import { default as
|
|
76
|
-
import { default as
|
|
77
|
-
import { default as
|
|
78
|
-
import { default as
|
|
79
|
-
import { default as
|
|
80
|
-
import { default as
|
|
81
|
-
import { default as
|
|
82
|
-
import { default as
|
|
83
|
-
import { default as
|
|
84
|
-
import { default as
|
|
85
|
-
import { default as
|
|
86
|
-
import { default as
|
|
87
|
-
import { default as
|
|
88
|
-
import { default as
|
|
89
|
-
import { default as
|
|
90
|
-
import { default as
|
|
91
|
-
import { default as
|
|
92
|
-
import { default as
|
|
93
|
-
import { default as
|
|
94
|
-
import { default as
|
|
95
|
-
import { default as
|
|
96
|
-
import { default as
|
|
97
|
-
import { default as
|
|
98
|
-
import { default as
|
|
99
|
-
import { default as
|
|
100
|
-
import { default as
|
|
101
|
-
import { default as
|
|
102
|
-
import { default as
|
|
103
|
-
import { default as
|
|
104
|
-
import { default as
|
|
105
|
-
import { default as
|
|
106
|
-
import { default as
|
|
107
|
-
import { default as
|
|
108
|
-
import { default as
|
|
109
|
-
import { default as
|
|
110
|
-
import { default as
|
|
111
|
-
import { default as
|
|
112
|
-
import { default as
|
|
113
|
-
import { default as
|
|
114
|
-
import { default as
|
|
115
|
-
import { default as
|
|
116
|
-
import { default as
|
|
117
|
-
import { default as
|
|
118
|
-
import { default as
|
|
119
|
-
import { default as
|
|
120
|
-
import { default as Yr } from "./components/base/ViewTab.vue.js";
|
|
36
|
+
import { default as Qe } from "./components/base/Accordion.vue.js";
|
|
37
|
+
import { default as Ye } from "./components/timeline/ActivityTimeline.vue.js";
|
|
38
|
+
import { default as qe } from "./components/base/AddViewBtn.vue.js";
|
|
39
|
+
import { default as Xe } from "./components/ai/AiMessageBubble.vue.js";
|
|
40
|
+
import { default as $e } from "./components/ai/AiMessageList.vue.js";
|
|
41
|
+
import { default as aa } from "./components/ai/AiSender.vue.js";
|
|
42
|
+
import { default as oa } from "./components/ai/AiStreamingCursor.vue.js";
|
|
43
|
+
import { default as fa } from "./components/ai/AiThinking.vue.js";
|
|
44
|
+
import { default as la } from "./components/layout/AppLayout.vue.js";
|
|
45
|
+
import { default as ua } from "./components/base/Avatar.vue.js";
|
|
46
|
+
import { default as pa } from "./components/base/Badge.vue.js";
|
|
47
|
+
import { default as ia } from "./components/Dashboard/charts/BarChart.vue.js";
|
|
48
|
+
import { default as ca } from "./components/editor/BlockQuote.vue.js";
|
|
49
|
+
import { default as Ta } from "./components/breadcrumb/Breadcrumb.vue.js";
|
|
50
|
+
import { default as Sa } from "./components/breadcrumb/BreadcrumbItem.vue.js";
|
|
51
|
+
import { default as Da } from "./components/base/ButtonGroup.vue.js";
|
|
52
|
+
import { default as ha } from "./components/base/ChainItem.vue.js";
|
|
53
|
+
import { default as Ba } from "./components/editor/CodeBlock.vue.js";
|
|
54
|
+
import { default as Ma } from "./components/auxiliary/ColorPanel.vue.js";
|
|
55
|
+
import { default as ka } from "./components/table/ColumnHeaderMenu.vue.js";
|
|
56
|
+
import { default as ya } from "./components/detail/CommentItem.vue.js";
|
|
57
|
+
import { default as Ia } from "./components/editor/ContentBlock.vue.js";
|
|
58
|
+
import { default as Ga } from "./components/Dashboard/index.vue.js";
|
|
59
|
+
import { default as Ea } from "./components/table/DataTable.vue.js";
|
|
60
|
+
import { default as Ua } from "./components/database/DatabaseView.vue.js";
|
|
61
|
+
import { default as _a } from "./components/base/DescBlock.vue.js";
|
|
62
|
+
import { default as Oa } from "./components/detail/DetailLayout.vue.js";
|
|
63
|
+
import { default as Qa } from "./components/overlay/Dialog.vue.js";
|
|
64
|
+
import { default as Ya } from "./components/overlay/Drawer.vue.js";
|
|
65
|
+
import { default as qa } from "./components/base/DropdownMenu.vue.js";
|
|
66
|
+
import { default as Xa } from "./components/base/EmptyState.vue.js";
|
|
67
|
+
import { default as $a } from "./components/table/FieldCell.vue.js";
|
|
68
|
+
import { default as ar } from "./components/table/FieldTypePicker.vue.js";
|
|
69
|
+
import { default as or } from "./components/auxiliary/FileUpload.vue.js";
|
|
70
|
+
import { default as fr } from "./components/form/FormDesigner.vue.js";
|
|
71
|
+
import { default as lr } from "./components/gallery/GalleryCard.vue.js";
|
|
72
|
+
import { default as ur } from "./components/gallery/GalleryView.vue.js";
|
|
73
|
+
import { default as pr } from "./components/timeline/GanttRow.vue.js";
|
|
74
|
+
import { default as ir } from "./components/timeline/GanttTimeline.vue.js";
|
|
75
|
+
import { default as cr } from "./components/base/InfoCard.vue.js";
|
|
76
|
+
import { default as Tr } from "./components/kanban/KanbanBoard.vue.js";
|
|
77
|
+
import { default as Sr } from "./components/kanban/KanbanCard.vue.js";
|
|
78
|
+
import { default as Dr } from "./components/kanban/KanbanColumn.vue.js";
|
|
79
|
+
import { default as hr } from "./components/mermaid/MermaidChart.vue.js";
|
|
80
|
+
import { default as Br } from "./components/overlay/Modal.vue.js";
|
|
81
|
+
import { default as Mr } from "./components/base/MonitorItem.vue.js";
|
|
82
|
+
import { default as kr } from "./components/layout/Navbar.vue.js";
|
|
83
|
+
import { default as yr } from "./components/table/NewRowBtn.vue.js";
|
|
84
|
+
import { default as Ir } from "./components/Dashboard/charts/NumberCard.vue.js";
|
|
85
|
+
import { default as Gr } from "./components/auxiliary/PersonPanel.vue.js";
|
|
86
|
+
import { default as Er } from "./components/base/PersonaCard.vue.js";
|
|
87
|
+
import { default as Ur } from "./components/Dashboard/charts/PieChart.vue.js";
|
|
88
|
+
import { default as _r } from "./components/base/ProgressBar.vue.js";
|
|
89
|
+
import { default as Or } from "./components/detail/PropPanel.vue.js";
|
|
90
|
+
import { default as Qr } from "./components/detail/PropRow.vue.js";
|
|
91
|
+
import { default as Yr } from "./components/kanban/QuickAddRow.vue.js";
|
|
92
|
+
import { default as qr } from "./components/base/RangeSlider.vue.js";
|
|
93
|
+
import { default as Xr } from "./components/editor/RefLink.vue.js";
|
|
94
|
+
import { default as $r } from "./components/base/RefTag.vue.js";
|
|
95
|
+
import { default as ao } from "./components/editor/RichTextEditor.vue.js";
|
|
96
|
+
import { default as oo } from "./components/base/SearchHighlight.vue.js";
|
|
97
|
+
import { default as fo } from "./components/base/SectionBlock.vue.js";
|
|
98
|
+
import { default as lo } from "./components/base/SelectBadge.vue.js";
|
|
99
|
+
import { default as uo } from "./components/overlay/SidePanel.vue.js";
|
|
100
|
+
import { default as xo } from "./components/layout/Sidebar.vue.js";
|
|
101
|
+
import { default as no } from "./components/split/SplitPane.vue.js";
|
|
102
|
+
import { default as bo } from "./components/base/StatisticCard.vue.js";
|
|
103
|
+
import { default as wo } from "./components/layout/StatusBar.vue.js";
|
|
104
|
+
import { default as Co } from "./components/base/StatusIndicator.vue.js";
|
|
105
|
+
import { default as go } from "./components/base/StatusSummary.vue.js";
|
|
106
|
+
import { default as Ro } from "./components/base/Stepper.vue.js";
|
|
107
|
+
import { default as Po } from "./components/base/Switch.vue.js";
|
|
108
|
+
import { default as Ao } from "./components/tabs/TabPanel.vue.js";
|
|
109
|
+
import { default as Vo } from "./components/Dashboard/charts/TableChart.vue.js";
|
|
110
|
+
import { default as Fo } from "./components/table/TableColumnManager.vue.js";
|
|
111
|
+
import { default as Lo } from "./components/table/TableDataRow.vue.js";
|
|
112
|
+
import { default as vo } from "./components/table/TableFilterPanel.vue.js";
|
|
113
|
+
import { default as No } from "./components/table/TableGroupRow.vue.js";
|
|
114
|
+
import { default as Ko } from "./components/table/TableHeaderRow.vue.js";
|
|
115
|
+
import { default as Ho } from "./components/table/TableToolbar.vue.js";
|
|
116
|
+
import { default as zo } from "./components/tabs/Tabs.vue.js";
|
|
117
|
+
import { default as Wo } from "./components/toast/ToastItem.vue.js";
|
|
118
|
+
import { default as jo } from "./components/base/ToolbarBtn.vue.js";
|
|
119
|
+
import { default as Jo } from "./components/ai/UserMessageBubble.vue.js";
|
|
120
|
+
import { default as Zo } from "./components/base/ViewModeGroup.vue.js";
|
|
121
|
+
import { default as et } from "./components/base/ViewSwitcher.vue.js";
|
|
122
|
+
import { default as rt } from "./components/base/ViewTab.vue.js";
|
|
121
123
|
export {
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
124
|
+
Qe as Accordion,
|
|
125
|
+
Ye as ActivityTimeline,
|
|
126
|
+
qe as AddViewBtn,
|
|
127
|
+
Xe as AiMessageBubble,
|
|
128
|
+
$e as AiMessageList,
|
|
129
|
+
aa as AiSender,
|
|
130
|
+
oa as AiStreamingCursor,
|
|
131
|
+
fa as AiThinking,
|
|
132
|
+
la as AppLayout,
|
|
133
|
+
ua as Avatar,
|
|
134
|
+
pa as Badge,
|
|
135
|
+
ia as BarChart,
|
|
136
|
+
ca as BlockQuote,
|
|
137
|
+
Ta as Breadcrumb,
|
|
138
|
+
Sa as BreadcrumbItem,
|
|
139
|
+
Da as ButtonGroup,
|
|
140
|
+
ha as ChainItem,
|
|
141
|
+
Ba as CodeBlock,
|
|
142
|
+
Ma as ColorPanel,
|
|
143
|
+
ka as ColumnHeaderMenu,
|
|
144
|
+
ya as CommentItem,
|
|
145
|
+
Ia as ContentBlock,
|
|
144
146
|
d as ContextMenu,
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
147
|
+
V as DEFAULT_PRIORITY_MAP,
|
|
148
|
+
y as DEFAULT_STATUS_MAP,
|
|
149
|
+
Ga as Dashboard,
|
|
150
|
+
Ea as DataTable,
|
|
151
|
+
Ua as DatabaseView,
|
|
152
|
+
_a as DescBlock,
|
|
153
|
+
Oa as DetailLayout,
|
|
154
|
+
Qa as Dialog,
|
|
155
|
+
Ue as DoughnutChart,
|
|
156
|
+
Ya as Drawer,
|
|
157
|
+
qa as DropdownMenu,
|
|
158
|
+
Xa as EmptyState,
|
|
159
|
+
$a as FieldCell,
|
|
160
|
+
o as FieldMarkdownPreview,
|
|
161
|
+
ar as FieldTypePicker,
|
|
162
|
+
or as FileUpload,
|
|
163
|
+
fr as FormDesigner,
|
|
164
|
+
lr as GalleryCard,
|
|
165
|
+
ur as GalleryView,
|
|
166
|
+
pr as GanttRow,
|
|
167
|
+
ir as GanttTimeline,
|
|
168
|
+
cr as InfoCard,
|
|
169
|
+
Tr as KanbanBoard,
|
|
170
|
+
Sr as KanbanCard,
|
|
171
|
+
Dr as KanbanColumn,
|
|
172
|
+
hr as MermaidChart,
|
|
173
|
+
Br as Modal,
|
|
174
|
+
Mr as MonitorItem,
|
|
175
|
+
kr as Navbar,
|
|
176
|
+
yr as NewRowBtn,
|
|
177
|
+
Ir as NumberCard,
|
|
178
|
+
Gr as PersonPanel,
|
|
179
|
+
Er as PersonaCard,
|
|
180
|
+
Ur as PieChart,
|
|
181
|
+
_r as ProgressBar,
|
|
182
|
+
Or as PropPanel,
|
|
183
|
+
Qr as PropRow,
|
|
184
|
+
Yr as QuickAddRow,
|
|
185
|
+
qr as RangeSlider,
|
|
186
|
+
Xr as RefLink,
|
|
187
|
+
$r as RefTag,
|
|
188
|
+
ao as RichTextEditor,
|
|
189
|
+
oo as SearchHighlight,
|
|
190
|
+
fo as SectionBlock,
|
|
191
|
+
lo as SelectBadge,
|
|
192
|
+
uo as SidePanel,
|
|
193
|
+
xo as Sidebar,
|
|
194
|
+
no as SplitPane,
|
|
195
|
+
bo as StatisticCard,
|
|
196
|
+
wo as StatusBar,
|
|
197
|
+
Co as StatusIndicator,
|
|
198
|
+
go as StatusSummary,
|
|
199
|
+
Ro as Stepper,
|
|
200
|
+
Po as Switch,
|
|
201
|
+
Ao as TabPanel,
|
|
202
|
+
Vo as TableChart,
|
|
203
|
+
Fo as TableColumnManager,
|
|
204
|
+
Lo as TableDataRow,
|
|
205
|
+
vo as TableFilterPanel,
|
|
206
|
+
No as TableGroupRow,
|
|
207
|
+
Ko as TableHeaderRow,
|
|
208
|
+
Ho as TableToolbar,
|
|
209
|
+
zo as Tabs,
|
|
210
|
+
_e as ThemeScope,
|
|
211
|
+
Oe as ToastContainer,
|
|
212
|
+
Wo as ToastItem,
|
|
213
|
+
jo as ToolbarBtn,
|
|
214
|
+
Jo as UserMessageBubble,
|
|
215
|
+
Zo as ViewModeGroup,
|
|
216
|
+
et as ViewSwitcher,
|
|
217
|
+
rt as ViewTab,
|
|
218
|
+
be as buildDetailSheetCellEditPayloads,
|
|
216
219
|
x as buildGalleryItems,
|
|
217
220
|
i as buildGanttItems,
|
|
218
221
|
n as buildKanbanColumns,
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
222
|
+
ke as composeDatabaseViewMiddlewares,
|
|
223
|
+
Ve as createDatabaseViewAnalyticsMiddleware,
|
|
224
|
+
ye as createDatabaseViewOptimisticMiddleware,
|
|
225
|
+
Fe as createDatabaseViewToastMiddleware,
|
|
226
|
+
he as createLocalStorageBackend,
|
|
227
|
+
Re as createSupabaseBackend,
|
|
228
|
+
J as createVirtualListState,
|
|
229
|
+
C as dataRecordToRow,
|
|
230
|
+
c as dataRecordToTask,
|
|
223
231
|
P as fetchSchemaFromSupabase,
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
232
|
+
D as fieldsToRow,
|
|
233
|
+
M as humanizeColumnName,
|
|
234
|
+
A as inferSchema,
|
|
227
235
|
f as installPluginComponents,
|
|
228
|
-
|
|
236
|
+
b as isFormulaField,
|
|
229
237
|
T as isSelectField,
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
238
|
+
F as mergeColorMap,
|
|
239
|
+
s as pluginComponentNames,
|
|
240
|
+
l as pluginComponentRegistry,
|
|
233
241
|
m as registerOneUIComponents,
|
|
234
|
-
|
|
235
|
-
|
|
242
|
+
I as resolveBadge,
|
|
243
|
+
g as rowToDataRecord,
|
|
236
244
|
h as rowsToDataRecords,
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
245
|
+
w as taskToDataRecord,
|
|
246
|
+
K as useAiChat,
|
|
247
|
+
L as useBadge,
|
|
248
|
+
re as useColumnResize,
|
|
249
|
+
Te as useDataTableDetailSheet,
|
|
250
|
+
ne as useDataTableSelection,
|
|
251
|
+
Me as useDatabaseView,
|
|
252
|
+
Le as useDatabaseViewport,
|
|
253
|
+
Ge as useDatabaseWorkspaceState,
|
|
254
|
+
de as useDraftRows,
|
|
255
|
+
te as useFixedColumns,
|
|
256
|
+
j as useInlineEdit,
|
|
257
|
+
se as useKeyboardNavigation,
|
|
258
|
+
W as useMarkdown,
|
|
259
|
+
me as useRowDrag,
|
|
260
|
+
Se as useSchemaEngine,
|
|
261
|
+
Ee as useSearch,
|
|
262
|
+
v as useStream,
|
|
255
263
|
R as useSupabaseAdapter,
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
+
De as useSupabaseProvider,
|
|
265
|
+
z as useTable,
|
|
266
|
+
H as useTableFilter,
|
|
267
|
+
ee as useToast,
|
|
268
|
+
N as useTypewriter,
|
|
269
|
+
Be as useViewPersistence,
|
|
270
|
+
X as useVirtualList,
|
|
271
|
+
Z as useVirtualListStateCache,
|
|
272
|
+
xe as useWorkerSort
|
|
264
273
|
};
|