@oneflowui/ui 0.4.4 → 0.5.1
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 +1 -1
- package/README.md +70 -0
- package/dist/components/database/DatabaseView.vue.d.ts +171 -0
- package/dist/components/database/DatabaseView.vue.js +7 -0
- package/dist/components/database/DatabaseView.vue2.js +774 -0
- package/dist/components/database/index.d.ts +2 -0
- package/dist/composables/index.d.ts +2 -0
- package/dist/composables/useDatabaseView.d.ts +138 -0
- package/dist/composables/useDatabaseView.js +388 -0
- package/dist/composables/useWorkerSort.js +30 -29
- package/dist/index.d.ts +4 -0
- package/dist/index.js +178 -173
- package/dist/style.css +1 -1
- package/dist/tests/database-view.integration.spec.d.ts +1 -0
- package/dist/workers/tableWorkerSource.js +79 -0
- package/package.json +17 -17
- package/dist/assets/tableWorker-CTsbCPPP.js +0 -1
package/dist/index.js
CHANGED
|
@@ -1,27 +1,28 @@
|
|
|
1
1
|
import a from "./components/field/FieldMarkdownPreview.vue.js";
|
|
2
2
|
import e from "./components/ContextMenu/index.vue.js";
|
|
3
|
-
import { buildGalleryItems as
|
|
4
|
-
import { dataRecordToRow as
|
|
5
|
-
import { fetchSchemaFromSupabase as
|
|
6
|
-
import { useStream as
|
|
7
|
-
import { useTypewriter as
|
|
8
|
-
import { useAiChat as
|
|
9
|
-
import { useTableFilter as
|
|
10
|
-
import { useTable as
|
|
11
|
-
import { useMarkdown as
|
|
12
|
-
import { useToast as
|
|
13
|
-
import { useVirtualList as
|
|
14
|
-
import { useInlineEdit as
|
|
15
|
-
import { useColumnResize as
|
|
16
|
-
import { useFixedColumns as
|
|
17
|
-
import { useKeyboardNavigation as
|
|
18
|
-
import { useRowDrag as
|
|
19
|
-
import { useDraftRows as
|
|
20
|
-
import { useWorkerSort as
|
|
21
|
-
import { useSchemaEngine as
|
|
22
|
-
import { useSupabaseProvider as
|
|
23
|
-
import { createLocalStorageBackend as
|
|
24
|
-
import {
|
|
3
|
+
import { buildGalleryItems as Ia, buildGanttItems as ya, buildKanbanColumns as Fa, dataRecordToTask as Ga, isFormulaField as Va, isSelectField as La, taskToDataRecord as va } from "./types/index.js";
|
|
4
|
+
import { dataRecordToRow as Ea, fieldsToRow as Ka, rowToDataRecord as Na, rowsToDataRecords as Ua, useSupabaseAdapter as Ha } from "./utils/supabaseAdapter.js";
|
|
5
|
+
import { fetchSchemaFromSupabase as za, humanizeColumnName as Oa, inferSchema as Wa } from "./utils/supabaseSchema.js";
|
|
6
|
+
import { useStream as $a } from "./composables/useStream.js";
|
|
7
|
+
import { useTypewriter as qa } from "./composables/useTypewriter.js";
|
|
8
|
+
import { useAiChat as Xa } from "./composables/useAiChat.js";
|
|
9
|
+
import { useTableFilter as re } from "./composables/useTableFilter.js";
|
|
10
|
+
import { useTable as ae } from "./composables/useTable.js";
|
|
11
|
+
import { useMarkdown as te } from "./composables/useMarkdown.js";
|
|
12
|
+
import { useToast as ie } from "./composables/useToast.js";
|
|
13
|
+
import { useVirtualList as pe } from "./composables/useVirtualList.js";
|
|
14
|
+
import { useInlineEdit as ne } from "./composables/useInlineEdit.js";
|
|
15
|
+
import { useColumnResize as de } from "./composables/useColumnResize.js";
|
|
16
|
+
import { useFixedColumns as be } from "./composables/useFixedColumns.js";
|
|
17
|
+
import { useKeyboardNavigation as Te } from "./composables/useKeyboardNavigation.js";
|
|
18
|
+
import { useRowDrag as we } from "./composables/useRowDrag.js";
|
|
19
|
+
import { useDraftRows as Be } from "./composables/useDraftRows.js";
|
|
20
|
+
import { useWorkerSort as he } from "./composables/useWorkerSort.js";
|
|
21
|
+
import { useSchemaEngine as Re } from "./composables/useSchemaEngine.js";
|
|
22
|
+
import { useSupabaseProvider as Ae } from "./composables/useSupabaseProvider.js";
|
|
23
|
+
import { createLocalStorageBackend as Me, createSupabaseBackend as ke, useViewPersistence as Ie } from "./composables/useViewPersistence.js";
|
|
24
|
+
import { useDatabaseView as Fe } from "./composables/useDatabaseView.js";
|
|
25
|
+
import { useSearch as Ve } from "./composables/useSearch.js";
|
|
25
26
|
/* empty css */
|
|
26
27
|
/* empty css */
|
|
27
28
|
import t from "./components/base/ViewTab.vue.js";
|
|
@@ -34,19 +35,19 @@ import n from "./components/base/ButtonGroup.vue.js";
|
|
|
34
35
|
import l from "./components/base/EmptyState.vue.js";
|
|
35
36
|
import d from "./components/base/StatisticCard.vue.js";
|
|
36
37
|
import u from "./components/base/DropdownMenu.vue.js";
|
|
37
|
-
import
|
|
38
|
-
import
|
|
38
|
+
import b from "./components/base/StatusIndicator.vue.js";
|
|
39
|
+
import c from "./components/base/Switch.vue.js";
|
|
39
40
|
import T from "./components/base/Stepper.vue.js";
|
|
40
41
|
import S from "./components/base/Accordion.vue.js";
|
|
41
|
-
import
|
|
42
|
-
import
|
|
42
|
+
import w from "./components/base/Avatar.vue.js";
|
|
43
|
+
import C from "./components/layout/AppLayout.vue.js";
|
|
43
44
|
import B from "./components/layout/Navbar.vue.js";
|
|
44
45
|
import g from "./components/layout/Sidebar.vue.js";
|
|
45
46
|
import h from "./components/layout/StatusBar.vue.js";
|
|
46
47
|
import P from "./components/table/DataTable.vue.js";
|
|
47
48
|
import R from "./components/table/TableHeaderRow.vue.js";
|
|
48
|
-
import
|
|
49
|
-
import
|
|
49
|
+
import x from "./components/table/TableDataRow.vue.js";
|
|
50
|
+
import A from "./components/table/TableGroupRow.vue.js";
|
|
50
51
|
import D from "./components/table/NewRowBtn.vue.js";
|
|
51
52
|
import M from "./components/table/TableFilterPanel.vue.js";
|
|
52
53
|
import k from "./components/table/TableColumnManager.vue.js";
|
|
@@ -54,8 +55,8 @@ import I from "./components/table/TableToolbar.vue.js";
|
|
|
54
55
|
import y from "./components/table/FieldCell.vue.js";
|
|
55
56
|
import F from "./components/table/FieldTypePicker.vue.js";
|
|
56
57
|
import G from "./components/table/ColumnHeaderMenu.vue.js";
|
|
57
|
-
import
|
|
58
|
-
import
|
|
58
|
+
import V from "./components/kanban/KanbanBoard.vue.js";
|
|
59
|
+
import L from "./components/kanban/KanbanColumn.vue.js";
|
|
59
60
|
import v from "./components/kanban/KanbanCard.vue.js";
|
|
60
61
|
import _ from "./components/kanban/QuickAddRow.vue.js";
|
|
61
62
|
import E from "./components/gallery/GalleryView.vue.js";
|
|
@@ -69,52 +70,53 @@ import O from "./components/editor/CodeBlock.vue.js";
|
|
|
69
70
|
import W from "./components/editor/RefLink.vue.js";
|
|
70
71
|
import Y from "./components/editor/RichTextEditor.vue.js";
|
|
71
72
|
import $ from "./components/form/FormDesigner.vue.js";
|
|
72
|
-
import j from "./components/
|
|
73
|
-
import q from "./components/auxiliary/
|
|
74
|
-
import J from "./components/auxiliary/
|
|
75
|
-
import X from "./components/
|
|
76
|
-
import Z from "./components/detail/
|
|
77
|
-
import rr from "./components/detail/
|
|
78
|
-
import or from "./components/detail/
|
|
79
|
-
import ar from "./components/
|
|
80
|
-
import er from "./components/Dashboard/
|
|
81
|
-
import tr from "./components/Dashboard/charts/
|
|
82
|
-
import mr from "./components/Dashboard/charts/
|
|
83
|
-
import ir from "./components/Dashboard/charts/
|
|
84
|
-
import sr from "./components/Dashboard/charts/
|
|
85
|
-
import pr from "./components/
|
|
86
|
-
import fr from "./components/ai/
|
|
87
|
-
import nr from "./components/ai/
|
|
88
|
-
import lr from "./components/ai/
|
|
89
|
-
import dr from "./components/ai/
|
|
90
|
-
import ur from "./components/ai/
|
|
73
|
+
import j from "./components/database/DatabaseView.vue.js";
|
|
74
|
+
import q from "./components/auxiliary/ColorPanel.vue.js";
|
|
75
|
+
import J from "./components/auxiliary/PersonPanel.vue.js";
|
|
76
|
+
import X from "./components/auxiliary/FileUpload.vue.js";
|
|
77
|
+
import Z from "./components/detail/DetailLayout.vue.js";
|
|
78
|
+
import rr from "./components/detail/PropPanel.vue.js";
|
|
79
|
+
import or from "./components/detail/PropRow.vue.js";
|
|
80
|
+
import ar from "./components/detail/CommentItem.vue.js";
|
|
81
|
+
import er from "./components/Dashboard/index.vue.js";
|
|
82
|
+
import tr from "./components/Dashboard/charts/BarChart.vue.js";
|
|
83
|
+
import mr from "./components/Dashboard/charts/PieChart.vue.js";
|
|
84
|
+
import ir from "./components/Dashboard/charts/DoughnutChart.vue.js";
|
|
85
|
+
import sr from "./components/Dashboard/charts/NumberCard.vue.js";
|
|
86
|
+
import pr from "./components/Dashboard/charts/TableChart.vue.js";
|
|
87
|
+
import fr from "./components/ai/AiThinking.vue.js";
|
|
88
|
+
import nr from "./components/ai/AiStreamingCursor.vue.js";
|
|
89
|
+
import lr from "./components/ai/AiMessageBubble.vue.js";
|
|
90
|
+
import dr from "./components/ai/UserMessageBubble.vue.js";
|
|
91
|
+
import ur from "./components/ai/AiMessageList.vue.js";
|
|
92
|
+
import br from "./components/ai/AiSender.vue.js";
|
|
91
93
|
import cr from "./components/overlay/Modal.vue.js";
|
|
92
|
-
import
|
|
93
|
-
import
|
|
94
|
-
import
|
|
94
|
+
import Tr from "./components/overlay/Dialog.vue.js";
|
|
95
|
+
import Sr from "./components/overlay/Drawer.vue.js";
|
|
96
|
+
import wr from "./components/overlay/SidePanel.vue.js";
|
|
95
97
|
import Cr from "./components/toast/ToastContainer.vue.js";
|
|
96
98
|
/* empty css */
|
|
97
|
-
import
|
|
98
|
-
import
|
|
99
|
-
import
|
|
100
|
-
import
|
|
101
|
-
import
|
|
102
|
-
import
|
|
99
|
+
import Br from "./components/toast/ToastItem.vue.js";
|
|
100
|
+
import gr from "./components/tabs/Tabs.vue.js";
|
|
101
|
+
import hr from "./components/tabs/TabPanel.vue.js";
|
|
102
|
+
import Pr from "./components/breadcrumb/Breadcrumb.vue.js";
|
|
103
|
+
import Rr from "./components/breadcrumb/BreadcrumbItem.vue.js";
|
|
104
|
+
import xr from "./components/mermaid/MermaidChart.vue.js";
|
|
103
105
|
import Ar from "./components/split/SplitPane.vue.js";
|
|
104
|
-
import
|
|
105
|
-
import
|
|
106
|
-
import
|
|
107
|
-
import
|
|
108
|
-
import
|
|
109
|
-
import
|
|
110
|
-
import
|
|
111
|
-
import
|
|
106
|
+
import Dr from "./components/base/RefTag.vue.js";
|
|
107
|
+
import Mr from "./components/base/DescBlock.vue.js";
|
|
108
|
+
import kr from "./components/base/ViewModeGroup.vue.js";
|
|
109
|
+
import Ir from "./components/base/ViewSwitcher.vue.js";
|
|
110
|
+
import yr from "./components/base/SelectBadge.vue.js";
|
|
111
|
+
import Fr from "./components/base/ChainItem.vue.js";
|
|
112
|
+
import Gr from "./components/base/SectionBlock.vue.js";
|
|
113
|
+
import Vr from "./components/base/MonitorItem.vue.js";
|
|
112
114
|
import Lr from "./components/base/StatusSummary.vue.js";
|
|
113
|
-
import
|
|
114
|
-
import
|
|
115
|
-
import
|
|
116
|
-
import { DEFAULT_PRIORITY_MAP as
|
|
117
|
-
const
|
|
115
|
+
import vr from "./components/base/InfoCard.vue.js";
|
|
116
|
+
import _r from "./components/base/PersonaCard.vue.js";
|
|
117
|
+
import Er from "./components/base/SearchHighlight.vue.js";
|
|
118
|
+
import { DEFAULT_PRIORITY_MAP as ve, DEFAULT_STATUS_MAP as _e, mergeColorMap as Ee, resolveBadge as Ke, useBadge as Ne } from "./composables/useBadge.js";
|
|
119
|
+
const Kr = [
|
|
118
120
|
t,
|
|
119
121
|
m,
|
|
120
122
|
i,
|
|
@@ -125,19 +127,19 @@ const Er = [
|
|
|
125
127
|
l,
|
|
126
128
|
d,
|
|
127
129
|
u,
|
|
128
|
-
c,
|
|
129
130
|
b,
|
|
131
|
+
c,
|
|
130
132
|
T,
|
|
131
133
|
S,
|
|
132
|
-
C,
|
|
133
134
|
w,
|
|
135
|
+
C,
|
|
134
136
|
B,
|
|
135
137
|
g,
|
|
136
138
|
h,
|
|
137
139
|
P,
|
|
138
140
|
R,
|
|
139
|
-
A,
|
|
140
141
|
x,
|
|
142
|
+
A,
|
|
141
143
|
D,
|
|
142
144
|
M,
|
|
143
145
|
k,
|
|
@@ -146,8 +148,8 @@ const Er = [
|
|
|
146
148
|
F,
|
|
147
149
|
G,
|
|
148
150
|
a,
|
|
149
|
-
L,
|
|
150
151
|
V,
|
|
152
|
+
L,
|
|
151
153
|
v,
|
|
152
154
|
_,
|
|
153
155
|
E,
|
|
@@ -180,34 +182,35 @@ const Er = [
|
|
|
180
182
|
lr,
|
|
181
183
|
dr,
|
|
182
184
|
ur,
|
|
183
|
-
cr,
|
|
184
185
|
br,
|
|
186
|
+
cr,
|
|
185
187
|
Tr,
|
|
186
188
|
Sr,
|
|
187
|
-
Cr,
|
|
188
189
|
wr,
|
|
190
|
+
Cr,
|
|
189
191
|
Br,
|
|
190
192
|
gr,
|
|
191
193
|
hr,
|
|
192
194
|
Pr,
|
|
193
195
|
Rr,
|
|
194
|
-
Ar,
|
|
195
196
|
xr,
|
|
197
|
+
Ar,
|
|
196
198
|
Dr,
|
|
197
199
|
Mr,
|
|
198
200
|
kr,
|
|
199
|
-
e,
|
|
200
201
|
Ir,
|
|
202
|
+
e,
|
|
201
203
|
yr,
|
|
202
204
|
Fr,
|
|
203
205
|
Gr,
|
|
204
|
-
Lr,
|
|
205
206
|
Vr,
|
|
207
|
+
Lr,
|
|
206
208
|
vr,
|
|
207
|
-
_r
|
|
208
|
-
|
|
209
|
+
_r,
|
|
210
|
+
Er
|
|
211
|
+
], Da = {
|
|
209
212
|
install(o) {
|
|
210
|
-
|
|
213
|
+
Kr.forEach((r) => {
|
|
211
214
|
o.component(r.name || r.__name || "", r);
|
|
212
215
|
});
|
|
213
216
|
}
|
|
@@ -216,134 +219,136 @@ export {
|
|
|
216
219
|
S as Accordion,
|
|
217
220
|
N as ActivityTimeline,
|
|
218
221
|
i as AddViewBtn,
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
222
|
+
lr as AiMessageBubble,
|
|
223
|
+
ur as AiMessageList,
|
|
224
|
+
br as AiSender,
|
|
225
|
+
nr as AiStreamingCursor,
|
|
226
|
+
fr as AiThinking,
|
|
227
|
+
C as AppLayout,
|
|
228
|
+
w as Avatar,
|
|
226
229
|
s as Badge,
|
|
227
|
-
|
|
230
|
+
tr as BarChart,
|
|
228
231
|
z as BlockQuote,
|
|
229
|
-
|
|
230
|
-
|
|
232
|
+
Pr as Breadcrumb,
|
|
233
|
+
Rr as BreadcrumbItem,
|
|
231
234
|
n as ButtonGroup,
|
|
232
|
-
|
|
235
|
+
Fr as ChainItem,
|
|
233
236
|
O as CodeBlock,
|
|
234
|
-
|
|
237
|
+
q as ColorPanel,
|
|
235
238
|
G as ColumnHeaderMenu,
|
|
236
|
-
|
|
239
|
+
ar as CommentItem,
|
|
237
240
|
Q as ContentBlock,
|
|
238
241
|
e as ContextMenu,
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
+
ve as DEFAULT_PRIORITY_MAP,
|
|
243
|
+
_e as DEFAULT_STATUS_MAP,
|
|
244
|
+
er as Dashboard,
|
|
242
245
|
P as DataTable,
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
246
|
+
j as DatabaseView,
|
|
247
|
+
Mr as DescBlock,
|
|
248
|
+
Z as DetailLayout,
|
|
249
|
+
Tr as Dialog,
|
|
250
|
+
ir as DoughnutChart,
|
|
251
|
+
Sr as Drawer,
|
|
248
252
|
u as DropdownMenu,
|
|
249
253
|
l as EmptyState,
|
|
250
254
|
y as FieldCell,
|
|
251
255
|
a as FieldMarkdownPreview,
|
|
252
256
|
F as FieldTypePicker,
|
|
253
|
-
|
|
257
|
+
X as FileUpload,
|
|
254
258
|
$ as FormDesigner,
|
|
255
259
|
K as GalleryCard,
|
|
256
260
|
E as GalleryView,
|
|
257
261
|
H as GanttRow,
|
|
258
262
|
U as GanttTimeline,
|
|
259
|
-
|
|
260
|
-
|
|
263
|
+
vr as InfoCard,
|
|
264
|
+
V as KanbanBoard,
|
|
261
265
|
v as KanbanCard,
|
|
262
|
-
|
|
263
|
-
|
|
266
|
+
L as KanbanColumn,
|
|
267
|
+
xr as MermaidChart,
|
|
264
268
|
cr as Modal,
|
|
265
|
-
|
|
269
|
+
Vr as MonitorItem,
|
|
266
270
|
B as Navbar,
|
|
267
271
|
D as NewRowBtn,
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
272
|
+
sr as NumberCard,
|
|
273
|
+
Da as OneflowUI,
|
|
274
|
+
J as PersonPanel,
|
|
275
|
+
_r as PersonaCard,
|
|
276
|
+
mr as PieChart,
|
|
273
277
|
f as ProgressBar,
|
|
274
|
-
|
|
275
|
-
|
|
278
|
+
rr as PropPanel,
|
|
279
|
+
or as PropRow,
|
|
276
280
|
_ as QuickAddRow,
|
|
277
281
|
p as RangeSlider,
|
|
278
282
|
W as RefLink,
|
|
279
|
-
|
|
283
|
+
Dr as RefTag,
|
|
280
284
|
Y as RichTextEditor,
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
+
Er as SearchHighlight,
|
|
286
|
+
Gr as SectionBlock,
|
|
287
|
+
yr as SelectBadge,
|
|
288
|
+
wr as SidePanel,
|
|
285
289
|
g as Sidebar,
|
|
286
290
|
Ar as SplitPane,
|
|
287
291
|
d as StatisticCard,
|
|
288
292
|
h as StatusBar,
|
|
289
|
-
|
|
293
|
+
b as StatusIndicator,
|
|
290
294
|
Lr as StatusSummary,
|
|
291
295
|
T as Stepper,
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
296
|
+
c as Switch,
|
|
297
|
+
hr as TabPanel,
|
|
298
|
+
pr as TableChart,
|
|
295
299
|
k as TableColumnManager,
|
|
296
|
-
|
|
300
|
+
x as TableDataRow,
|
|
297
301
|
M as TableFilterPanel,
|
|
298
|
-
|
|
302
|
+
A as TableGroupRow,
|
|
299
303
|
R as TableHeaderRow,
|
|
300
304
|
I as TableToolbar,
|
|
301
|
-
|
|
305
|
+
gr as Tabs,
|
|
302
306
|
Cr as ToastContainer,
|
|
303
|
-
|
|
307
|
+
Br as ToastItem,
|
|
304
308
|
m as ToolbarBtn,
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
309
|
+
dr as UserMessageBubble,
|
|
310
|
+
kr as ViewModeGroup,
|
|
311
|
+
Ir as ViewSwitcher,
|
|
308
312
|
t as ViewTab,
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
313
|
+
Ia as buildGalleryItems,
|
|
314
|
+
ya as buildGanttItems,
|
|
315
|
+
Fa as buildKanbanColumns,
|
|
316
|
+
Me as createLocalStorageBackend,
|
|
317
|
+
ke as createSupabaseBackend,
|
|
318
|
+
Ea as dataRecordToRow,
|
|
319
|
+
Ga as dataRecordToTask,
|
|
320
|
+
Da as default,
|
|
321
|
+
za as fetchSchemaFromSupabase,
|
|
322
|
+
Ka as fieldsToRow,
|
|
323
|
+
Oa as humanizeColumnName,
|
|
324
|
+
Wa as inferSchema,
|
|
325
|
+
Va as isFormulaField,
|
|
326
|
+
La as isSelectField,
|
|
327
|
+
Ee as mergeColorMap,
|
|
328
|
+
Ke as resolveBadge,
|
|
329
|
+
Na as rowToDataRecord,
|
|
330
|
+
Ua as rowsToDataRecords,
|
|
331
|
+
va as taskToDataRecord,
|
|
332
|
+
Xa as useAiChat,
|
|
333
|
+
Ne as useBadge,
|
|
334
|
+
de as useColumnResize,
|
|
335
|
+
Fe as useDatabaseView,
|
|
336
|
+
Be as useDraftRows,
|
|
337
|
+
be as useFixedColumns,
|
|
338
|
+
ne as useInlineEdit,
|
|
339
|
+
Te as useKeyboardNavigation,
|
|
340
|
+
te as useMarkdown,
|
|
341
|
+
we as useRowDrag,
|
|
342
|
+
Re as useSchemaEngine,
|
|
343
|
+
Ve as useSearch,
|
|
344
|
+
$a as useStream,
|
|
345
|
+
Ha as useSupabaseAdapter,
|
|
346
|
+
Ae as useSupabaseProvider,
|
|
347
|
+
ae as useTable,
|
|
348
|
+
re as useTableFilter,
|
|
349
|
+
ie as useToast,
|
|
350
|
+
qa as useTypewriter,
|
|
351
|
+
Ie as useViewPersistence,
|
|
352
|
+
pe as useVirtualList,
|
|
353
|
+
he as useWorkerSort
|
|
349
354
|
};
|