@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.
- package/dist/components/Dashboard/charts/BarChart.vue.js +2 -2
- package/dist/components/Dashboard/charts/BarChart.vue2.js +9 -9
- package/dist/components/Dashboard/charts/NumberCard.vue.js +2 -2
- package/dist/components/Dashboard/charts/PieChart.vue.js +1 -1
- package/dist/components/Dashboard/charts/PieChart.vue2.js +3 -3
- package/dist/components/Dashboard/charts/TableChart.vue.js +2 -2
- package/dist/components/Dashboard/index.vue.js +2 -2
- package/dist/components/base/InfoCard.vue.js +1 -1
- package/dist/components/base/InfoCard.vue2.js +40 -40
- package/dist/components/base/StatisticCard.vue.js +3 -3
- package/dist/components/base/StatusSummary.vue.js +1 -1
- package/dist/components/base/StatusSummary.vue2.js +5 -5
- package/dist/components/database/DatabaseDetailPresenter.vue.d.ts +41 -0
- package/dist/components/database/DatabaseDetailPresenter.vue.js +76 -0
- package/dist/components/database/DatabaseDetailPresenter.vue2.js +4 -0
- package/dist/components/database/DatabaseDetailWorkspace.vue.d.ts +37 -0
- package/dist/components/database/DatabaseDetailWorkspace.vue.js +7 -0
- package/dist/components/database/DatabaseDetailWorkspace.vue2.js +103 -0
- package/dist/components/database/DatabaseView.vue.d.ts +13 -76
- package/dist/components/database/DatabaseView.vue.js +2 -2
- package/dist/components/database/DatabaseView.vue2.js +322 -921
- package/dist/components/database/DatabaseViewContent.vue.d.ts +74 -0
- package/dist/components/database/DatabaseViewContent.vue.js +79 -0
- package/dist/components/database/DatabaseViewContent.vue2.js +4 -0
- package/dist/components/database/DatabaseViewDetailHost.vue.d.ts +43 -0
- package/dist/components/database/DatabaseViewDetailHost.vue.js +59 -0
- package/dist/components/database/DatabaseViewDetailHost.vue2.js +4 -0
- package/dist/components/database/DatabaseViewShell.vue.d.ts +35 -0
- package/dist/components/database/DatabaseViewShell.vue.js +7 -0
- package/dist/components/database/DatabaseViewShell.vue2.js +71 -0
- package/dist/components/database/DatabaseViewToolbar.vue.d.ts +77 -0
- package/dist/components/database/DatabaseViewToolbar.vue.js +62 -0
- package/dist/components/database/DatabaseViewToolbar.vue2.js +4 -0
- package/dist/components/database/databaseViewUtils.d.ts +91 -0
- package/dist/components/database/databaseViewUtils.js +266 -0
- package/dist/components/database/index.d.ts +1 -1
- package/dist/components/kanban/KanbanColumn.vue.d.ts +2 -2
- package/dist/components/layout/AppLayout.vue.js +1 -1
- package/dist/components/layout/Navbar.vue.js +1 -1
- package/dist/components/layout/Sidebar.vue.js +2 -2
- package/dist/components/layout/StatusBar.vue.js +2 -2
- package/dist/components/overlay/Dialog.vue.d.ts +1 -1
- package/dist/components/table/ColumnHeaderMenu.vue.js +3 -3
- package/dist/components/table/DataTable.vue.d.ts +6 -17
- package/dist/components/table/DataTable.vue.js +2 -2
- package/dist/components/table/DataTable.vue2.js +781 -872
- package/dist/components/table/DataTableDesktopFixedRegion.vue.d.ts +56 -0
- package/dist/components/table/DataTableDesktopFixedRegion.vue.js +7 -0
- package/dist/components/table/DataTableDesktopFixedRegion.vue2.js +67 -0
- package/dist/components/table/DataTableDesktopFrame.vue.d.ts +127 -0
- package/dist/components/table/DataTableDesktopFrame.vue.js +7 -0
- package/dist/components/table/DataTableDesktopFrame.vue2.js +196 -0
- package/dist/components/table/DataTableDesktopScrollRegion.vue.d.ts +55 -0
- package/dist/components/table/DataTableDesktopScrollRegion.vue.js +7 -0
- package/dist/components/table/DataTableDesktopScrollRegion.vue2.js +66 -0
- package/dist/components/table/DataTableDesktopStandardRegion.vue.d.ts +54 -0
- package/dist/components/table/DataTableDesktopStandardRegion.vue.js +7 -0
- package/dist/components/table/DataTableDesktopStandardRegion.vue2.js +65 -0
- package/dist/components/table/DataTableDraftToolbar.vue.d.ts +11 -0
- package/dist/components/table/DataTableDraftToolbar.vue.js +7 -0
- package/dist/components/table/DataTableDraftToolbar.vue2.js +25 -0
- package/dist/components/table/DataTableMobilePanel.vue.d.ts +79 -0
- package/dist/components/table/DataTableMobilePanel.vue.js +60 -0
- package/dist/components/table/DataTableMobilePanel.vue2.js +4 -0
- package/dist/components/table/DataTableSelectionBar.vue.d.ts +11 -0
- package/dist/components/table/DataTableSelectionBar.vue.js +7 -0
- package/dist/components/table/DataTableSelectionBar.vue2.js +33 -0
- package/dist/components/table/DetailSheet.vue.js +1 -1
- package/dist/components/table/DetailSheet.vue2.js +160 -187
- package/dist/components/table/FieldTypePicker.vue.js +3 -3
- package/dist/components/table/MobileListView.vue.js +1 -1
- package/dist/components/table/TableColumnManager.vue.js +3 -3
- package/dist/components/table/TableDataRow.vue.js +4 -4
- package/dist/components/table/TableFilterPanel.vue.js +1 -1
- package/dist/components/table/TableGroupRow.vue.js +2 -2
- package/dist/components/table/TableHeaderRow.vue.js +3 -3
- package/dist/components/table/TableToolbar.vue.js +2 -2
- package/dist/components/table/TableToolbar.vue2.js +126 -138
- package/dist/components/table/dataTableUtils.d.ts +26 -0
- package/dist/components/table/dataTableUtils.js +60 -0
- package/dist/composables/databaseDetailWorkspaceUtils.d.ts +59 -0
- package/dist/composables/databaseDetailWorkspaceUtils.js +160 -0
- package/dist/composables/index.d.ts +5 -0
- package/dist/composables/useDataTableDetailSheet.d.ts +47 -0
- package/dist/composables/useDataTableDetailSheet.js +58 -0
- package/dist/composables/useDataTableLayout.d.ts +16 -0
- package/dist/composables/useDataTableLayout.js +38 -0
- package/dist/composables/useDataTableSelection.d.ts +41 -0
- package/dist/composables/useDataTableSelection.js +73 -0
- package/dist/composables/useDatabaseDetailWorkspace.d.ts +67 -0
- package/dist/composables/useDatabaseDetailWorkspace.js +150 -0
- package/dist/composables/useDatabaseView.d.ts +3 -137
- package/dist/composables/useDatabaseWorkspace.d.ts +31 -0
- package/dist/composables/useDatabaseWorkspace.js +89 -0
- package/dist/composables/useTableToolbarPanels.d.ts +19 -0
- package/dist/composables/useTableToolbarPanels.js +53 -0
- package/dist/contracts/database.d.ts +252 -0
- package/dist/index.d.ts +6 -0
- package/dist/index.js +261 -248
- package/dist/plugin.d.ts +2 -0
- package/dist/plugin.js +10 -261
- package/dist/registry/plugin-components.d.ts +291 -0
- package/dist/registry/plugin-components.js +114 -0
- package/dist/style.css +1 -1
- package/dist/types/data-table.d.ts +27 -0
- package/dist/types/data-table.js +29 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1,251 +1,264 @@
|
|
|
1
|
-
import { default as
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
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 {
|
|
1
|
+
import { default as r } from "./components/field/FieldMarkdownPreview.vue.js";
|
|
2
|
+
import { installPluginComponents as f, pluginComponentNames as l, pluginComponentRegistry as s, registerOneUIComponents as m } from "./registry/plugin-components.js";
|
|
3
|
+
import { default as d } from "./components/ContextMenu/index.vue.js";
|
|
4
|
+
import { buildGalleryItems as x, buildGanttItems as i, buildKanbanColumns as n, dataRecordToTask as b, isFormulaField as c, isSelectField as T, taskToDataRecord as S } from "./types/index.js";
|
|
5
|
+
import { dataRecordToRow as w, fieldsToRow as g, rowToDataRecord as D, rowsToDataRecords as h, useSupabaseAdapter as R } from "./utils/supabaseAdapter.js";
|
|
6
|
+
import { fetchSchemaFromSupabase as P, humanizeColumnName as A, inferSchema as k } from "./utils/supabaseSchema.js";
|
|
7
|
+
import { useStream as F } from "./composables/useStream.js";
|
|
8
|
+
import { useTypewriter as I } from "./composables/useTypewriter.js";
|
|
9
|
+
import { useAiChat as G } from "./composables/useAiChat.js";
|
|
10
|
+
import { useTableFilter as v } from "./composables/useTableFilter.js";
|
|
11
|
+
import { useTable as N } from "./composables/useTable.js";
|
|
12
|
+
import { useMarkdown as K } from "./composables/useMarkdown.js";
|
|
13
|
+
import { useToast as H } from "./composables/useToast.js";
|
|
14
|
+
import { useVirtualList as O } from "./composables/useVirtualList.js";
|
|
15
|
+
import { useInlineEdit as W } from "./composables/useInlineEdit.js";
|
|
16
|
+
import { useColumnResize as j } from "./composables/useColumnResize.js";
|
|
17
|
+
import { useFixedColumns as J } from "./composables/useFixedColumns.js";
|
|
18
|
+
import { useKeyboardNavigation as Z } from "./composables/useKeyboardNavigation.js";
|
|
19
|
+
import { useRowDrag as ee } from "./composables/useRowDrag.js";
|
|
20
|
+
import { useDraftRows as oe } from "./composables/useDraftRows.js";
|
|
21
|
+
import { useDataTableSelection as te } from "./composables/useDataTableSelection.js";
|
|
22
|
+
import { buildDetailSheetCellEditPayloads as le, useDataTableDetailSheet as se } from "./composables/useDataTableDetailSheet.js";
|
|
23
|
+
import { useWorkerSort as ue } from "./composables/useWorkerSort.js";
|
|
24
|
+
import { useSchemaEngine as pe } from "./composables/useSchemaEngine.js";
|
|
25
|
+
import { useSupabaseProvider as ie } from "./composables/useSupabaseProvider.js";
|
|
26
|
+
import { createLocalStorageBackend as be, createSupabaseBackend as ce, useViewPersistence as Te } from "./composables/useViewPersistence.js";
|
|
27
|
+
import { useDatabaseView as Ce } from "./composables/useDatabaseView.js";
|
|
28
|
+
import { useDatabaseViewport as ge, useDatabaseWorkspaceState as De } from "./composables/useDatabaseWorkspace.js";
|
|
29
|
+
import { useSearch as Re } from "./composables/useSearch.js";
|
|
30
|
+
import { default as Pe } from "./components/Dashboard/charts/DoughnutChart.vue.js";
|
|
31
|
+
import { default as ke } from "./components/toast/ToastContainer.vue.js";
|
|
28
32
|
/* empty css */
|
|
29
|
-
import { default as
|
|
30
|
-
import { default as
|
|
31
|
-
import { default as
|
|
32
|
-
import { default as
|
|
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_PRIORITY_MAP as
|
|
52
|
-
import { default as
|
|
53
|
-
import { default as
|
|
54
|
-
import { default as
|
|
55
|
-
import { default as
|
|
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
|
|
33
|
+
import { default as Fe } from "./components/base/Accordion.vue.js";
|
|
34
|
+
import { default as Ie } from "./components/timeline/ActivityTimeline.vue.js";
|
|
35
|
+
import { default as Ge } from "./components/base/AddViewBtn.vue.js";
|
|
36
|
+
import { default as ve } from "./components/ai/AiMessageBubble.vue.js";
|
|
37
|
+
import { default as Ne } from "./components/ai/AiMessageList.vue.js";
|
|
38
|
+
import { default as Ke } from "./components/ai/AiSender.vue.js";
|
|
39
|
+
import { default as He } from "./components/ai/AiStreamingCursor.vue.js";
|
|
40
|
+
import { default as Oe } from "./components/ai/AiThinking.vue.js";
|
|
41
|
+
import { default as We } from "./components/layout/AppLayout.vue.js";
|
|
42
|
+
import { default as je } from "./components/base/Avatar.vue.js";
|
|
43
|
+
import { default as Je } from "./components/base/Badge.vue.js";
|
|
44
|
+
import { default as Ze } from "./components/Dashboard/charts/BarChart.vue.js";
|
|
45
|
+
import { default as ea } from "./components/editor/BlockQuote.vue.js";
|
|
46
|
+
import { default as oa } from "./components/breadcrumb/Breadcrumb.vue.js";
|
|
47
|
+
import { default as ta } from "./components/breadcrumb/BreadcrumbItem.vue.js";
|
|
48
|
+
import { default as la } from "./components/base/ButtonGroup.vue.js";
|
|
49
|
+
import { default as ma } from "./components/base/ChainItem.vue.js";
|
|
50
|
+
import { default as da } from "./components/editor/CodeBlock.vue.js";
|
|
51
|
+
import { default as xa } from "./components/auxiliary/ColorPanel.vue.js";
|
|
52
|
+
import { default as na } from "./components/table/ColumnHeaderMenu.vue.js";
|
|
53
|
+
import { default as ca } from "./components/detail/CommentItem.vue.js";
|
|
54
|
+
import { default as Sa } from "./components/editor/ContentBlock.vue.js";
|
|
55
|
+
import { DEFAULT_PRIORITY_MAP as wa, DEFAULT_STATUS_MAP as ga, mergeColorMap as Da, resolveBadge as ha, useBadge as Ra } from "./composables/useBadge.js";
|
|
56
|
+
import { default as Pa } from "./components/Dashboard/index.vue.js";
|
|
57
|
+
import { default as ka } from "./components/table/DataTable.vue.js";
|
|
58
|
+
import { default as Fa } from "./components/database/DatabaseView.vue.js";
|
|
59
|
+
import { default as Ia } from "./components/base/DescBlock.vue.js";
|
|
60
|
+
import { default as Ga } from "./components/detail/DetailLayout.vue.js";
|
|
61
|
+
import { default as va } from "./components/overlay/Dialog.vue.js";
|
|
62
|
+
import { default as Na } from "./components/overlay/Drawer.vue.js";
|
|
63
|
+
import { default as Ka } from "./components/base/DropdownMenu.vue.js";
|
|
64
|
+
import { default as Ha } from "./components/base/EmptyState.vue.js";
|
|
65
|
+
import { default as Oa } from "./components/table/FieldCell.vue.js";
|
|
66
|
+
import { default as Wa } from "./components/table/FieldTypePicker.vue.js";
|
|
67
|
+
import { default as ja } from "./components/auxiliary/FileUpload.vue.js";
|
|
68
|
+
import { default as Ja } from "./components/form/FormDesigner.vue.js";
|
|
69
|
+
import { default as Za } from "./components/gallery/GalleryCard.vue.js";
|
|
70
|
+
import { default as eo } from "./components/gallery/GalleryView.vue.js";
|
|
71
|
+
import { default as oo } from "./components/timeline/GanttRow.vue.js";
|
|
72
|
+
import { default as to } from "./components/timeline/GanttTimeline.vue.js";
|
|
73
|
+
import { default as lo } from "./components/base/InfoCard.vue.js";
|
|
74
|
+
import { default as mo } from "./components/kanban/KanbanBoard.vue.js";
|
|
75
|
+
import { default as po } from "./components/kanban/KanbanCard.vue.js";
|
|
76
|
+
import { default as io } from "./components/kanban/KanbanColumn.vue.js";
|
|
77
|
+
import { default as bo } from "./components/mermaid/MermaidChart.vue.js";
|
|
78
|
+
import { default as To } from "./components/overlay/Modal.vue.js";
|
|
79
|
+
import { default as Co } from "./components/base/MonitorItem.vue.js";
|
|
80
|
+
import { default as go } from "./components/layout/Navbar.vue.js";
|
|
81
|
+
import { default as ho } from "./components/table/NewRowBtn.vue.js";
|
|
82
|
+
import { default as Bo } from "./components/Dashboard/charts/NumberCard.vue.js";
|
|
83
|
+
import { default as Ao } from "./components/auxiliary/PersonPanel.vue.js";
|
|
84
|
+
import { default as Mo } from "./components/base/PersonaCard.vue.js";
|
|
85
|
+
import { default as yo } from "./components/Dashboard/charts/PieChart.vue.js";
|
|
86
|
+
import { default as Vo } from "./components/base/ProgressBar.vue.js";
|
|
87
|
+
import { default as Lo } from "./components/detail/PropPanel.vue.js";
|
|
88
|
+
import { default as Eo } from "./components/detail/PropRow.vue.js";
|
|
89
|
+
import { default as Uo } from "./components/kanban/QuickAddRow.vue.js";
|
|
90
|
+
import { default as _o } from "./components/base/RangeSlider.vue.js";
|
|
91
|
+
import { default as zo } from "./components/editor/RefLink.vue.js";
|
|
92
|
+
import { default as Qo } from "./components/base/RefTag.vue.js";
|
|
93
|
+
import { default as Yo } from "./components/editor/RichTextEditor.vue.js";
|
|
94
|
+
import { default as qo } from "./components/base/SearchHighlight.vue.js";
|
|
95
|
+
import { default as Xo } from "./components/base/SectionBlock.vue.js";
|
|
96
|
+
import { default as $o } from "./components/base/SelectBadge.vue.js";
|
|
97
|
+
import { default as ar } from "./components/overlay/SidePanel.vue.js";
|
|
98
|
+
import { default as rr } from "./components/layout/Sidebar.vue.js";
|
|
99
|
+
import { default as fr } from "./components/split/SplitPane.vue.js";
|
|
100
|
+
import { default as sr } from "./components/base/StatisticCard.vue.js";
|
|
101
|
+
import { default as ur } from "./components/layout/StatusBar.vue.js";
|
|
102
|
+
import { default as pr } from "./components/base/StatusIndicator.vue.js";
|
|
103
|
+
import { default as ir } from "./components/base/StatusSummary.vue.js";
|
|
104
|
+
import { default as br } from "./components/base/Stepper.vue.js";
|
|
105
|
+
import { default as Tr } from "./components/base/Switch.vue.js";
|
|
106
|
+
import { default as Cr } from "./components/tabs/TabPanel.vue.js";
|
|
107
|
+
import { default as gr } from "./components/Dashboard/charts/TableChart.vue.js";
|
|
108
|
+
import { default as hr } from "./components/table/TableColumnManager.vue.js";
|
|
109
|
+
import { default as Br } from "./components/table/TableDataRow.vue.js";
|
|
110
|
+
import { default as Ar } from "./components/table/TableFilterPanel.vue.js";
|
|
111
|
+
import { default as Mr } from "./components/table/TableGroupRow.vue.js";
|
|
112
|
+
import { default as yr } from "./components/table/TableHeaderRow.vue.js";
|
|
113
|
+
import { default as Vr } from "./components/table/TableToolbar.vue.js";
|
|
114
|
+
import { default as Lr } from "./components/tabs/Tabs.vue.js";
|
|
115
|
+
import { default as Er } from "./components/toast/ToastItem.vue.js";
|
|
116
|
+
import { default as Ur } from "./components/base/ToolbarBtn.vue.js";
|
|
117
|
+
import { default as _r } from "./components/ai/UserMessageBubble.vue.js";
|
|
118
|
+
import { default as zr } from "./components/base/ViewModeGroup.vue.js";
|
|
119
|
+
import { default as Qr } from "./components/base/ViewSwitcher.vue.js";
|
|
120
|
+
import { default as Yr } from "./components/base/ViewTab.vue.js";
|
|
117
121
|
export {
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
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
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
122
|
+
Fe as Accordion,
|
|
123
|
+
Ie as ActivityTimeline,
|
|
124
|
+
Ge as AddViewBtn,
|
|
125
|
+
ve as AiMessageBubble,
|
|
126
|
+
Ne as AiMessageList,
|
|
127
|
+
Ke as AiSender,
|
|
128
|
+
He as AiStreamingCursor,
|
|
129
|
+
Oe as AiThinking,
|
|
130
|
+
We as AppLayout,
|
|
131
|
+
je as Avatar,
|
|
132
|
+
Je as Badge,
|
|
133
|
+
Ze as BarChart,
|
|
134
|
+
ea as BlockQuote,
|
|
135
|
+
oa as Breadcrumb,
|
|
136
|
+
ta as BreadcrumbItem,
|
|
137
|
+
la as ButtonGroup,
|
|
138
|
+
ma as ChainItem,
|
|
139
|
+
da as CodeBlock,
|
|
140
|
+
xa as ColorPanel,
|
|
141
|
+
na as ColumnHeaderMenu,
|
|
142
|
+
ca as CommentItem,
|
|
143
|
+
Sa as ContentBlock,
|
|
144
|
+
d as ContextMenu,
|
|
145
|
+
wa as DEFAULT_PRIORITY_MAP,
|
|
146
|
+
ga as DEFAULT_STATUS_MAP,
|
|
147
|
+
Pa as Dashboard,
|
|
148
|
+
ka as DataTable,
|
|
149
|
+
Fa as DatabaseView,
|
|
150
|
+
Ia as DescBlock,
|
|
151
|
+
Ga as DetailLayout,
|
|
152
|
+
va as Dialog,
|
|
153
|
+
Pe as DoughnutChart,
|
|
154
|
+
Na as Drawer,
|
|
155
|
+
Ka as DropdownMenu,
|
|
156
|
+
Ha as EmptyState,
|
|
157
|
+
Oa as FieldCell,
|
|
158
|
+
r as FieldMarkdownPreview,
|
|
159
|
+
Wa as FieldTypePicker,
|
|
160
|
+
ja as FileUpload,
|
|
161
|
+
Ja as FormDesigner,
|
|
162
|
+
Za as GalleryCard,
|
|
163
|
+
eo as GalleryView,
|
|
164
|
+
oo as GanttRow,
|
|
165
|
+
to as GanttTimeline,
|
|
166
|
+
lo as InfoCard,
|
|
167
|
+
mo as KanbanBoard,
|
|
168
|
+
po as KanbanCard,
|
|
169
|
+
io as KanbanColumn,
|
|
170
|
+
bo as MermaidChart,
|
|
171
|
+
To as Modal,
|
|
172
|
+
Co as MonitorItem,
|
|
173
|
+
go as Navbar,
|
|
174
|
+
ho as NewRowBtn,
|
|
175
|
+
Bo as NumberCard,
|
|
176
|
+
Ao as PersonPanel,
|
|
177
|
+
Mo as PersonaCard,
|
|
178
|
+
yo as PieChart,
|
|
179
|
+
Vo as ProgressBar,
|
|
180
|
+
Lo as PropPanel,
|
|
181
|
+
Eo as PropRow,
|
|
182
|
+
Uo as QuickAddRow,
|
|
183
|
+
_o as RangeSlider,
|
|
184
|
+
zo as RefLink,
|
|
185
|
+
Qo as RefTag,
|
|
186
|
+
Yo as RichTextEditor,
|
|
187
|
+
qo as SearchHighlight,
|
|
188
|
+
Xo as SectionBlock,
|
|
189
|
+
$o as SelectBadge,
|
|
190
|
+
ar as SidePanel,
|
|
191
|
+
rr as Sidebar,
|
|
192
|
+
fr as SplitPane,
|
|
193
|
+
sr as StatisticCard,
|
|
194
|
+
ur as StatusBar,
|
|
195
|
+
pr as StatusIndicator,
|
|
196
|
+
ir as StatusSummary,
|
|
197
|
+
br as Stepper,
|
|
198
|
+
Tr as Switch,
|
|
199
|
+
Cr as TabPanel,
|
|
200
|
+
gr as TableChart,
|
|
201
|
+
hr as TableColumnManager,
|
|
202
|
+
Br as TableDataRow,
|
|
203
|
+
Ar as TableFilterPanel,
|
|
204
|
+
Mr as TableGroupRow,
|
|
205
|
+
yr as TableHeaderRow,
|
|
206
|
+
Vr as TableToolbar,
|
|
207
|
+
Lr as Tabs,
|
|
208
|
+
ke as ToastContainer,
|
|
209
|
+
Er as ToastItem,
|
|
210
|
+
Ur as ToolbarBtn,
|
|
211
|
+
_r as UserMessageBubble,
|
|
212
|
+
zr as ViewModeGroup,
|
|
213
|
+
Qr as ViewSwitcher,
|
|
214
|
+
Yr as ViewTab,
|
|
215
|
+
le as buildDetailSheetCellEditPayloads,
|
|
216
|
+
x as buildGalleryItems,
|
|
217
|
+
i as buildGanttItems,
|
|
218
|
+
n as buildKanbanColumns,
|
|
219
|
+
be as createLocalStorageBackend,
|
|
220
|
+
ce as createSupabaseBackend,
|
|
221
|
+
w as dataRecordToRow,
|
|
222
|
+
b as dataRecordToTask,
|
|
223
|
+
P as fetchSchemaFromSupabase,
|
|
224
|
+
g as fieldsToRow,
|
|
225
|
+
A as humanizeColumnName,
|
|
226
|
+
k as inferSchema,
|
|
227
|
+
f as installPluginComponents,
|
|
228
|
+
c as isFormulaField,
|
|
229
|
+
T as isSelectField,
|
|
230
|
+
Da as mergeColorMap,
|
|
231
|
+
l as pluginComponentNames,
|
|
232
|
+
s as pluginComponentRegistry,
|
|
233
|
+
m as registerOneUIComponents,
|
|
234
|
+
ha as resolveBadge,
|
|
235
|
+
D as rowToDataRecord,
|
|
236
|
+
h as rowsToDataRecords,
|
|
237
|
+
S as taskToDataRecord,
|
|
238
|
+
G as useAiChat,
|
|
239
|
+
Ra as useBadge,
|
|
240
|
+
j as useColumnResize,
|
|
241
|
+
se as useDataTableDetailSheet,
|
|
242
|
+
te as useDataTableSelection,
|
|
243
|
+
Ce as useDatabaseView,
|
|
244
|
+
ge as useDatabaseViewport,
|
|
245
|
+
De as useDatabaseWorkspaceState,
|
|
246
|
+
oe as useDraftRows,
|
|
247
|
+
J as useFixedColumns,
|
|
248
|
+
W as useInlineEdit,
|
|
249
|
+
Z as useKeyboardNavigation,
|
|
250
|
+
K as useMarkdown,
|
|
251
|
+
ee as useRowDrag,
|
|
252
|
+
pe as useSchemaEngine,
|
|
253
|
+
Re as useSearch,
|
|
254
|
+
F as useStream,
|
|
255
|
+
R as useSupabaseAdapter,
|
|
256
|
+
ie as useSupabaseProvider,
|
|
257
|
+
N as useTable,
|
|
258
|
+
v as useTableFilter,
|
|
259
|
+
H as useToast,
|
|
260
|
+
I as useTypewriter,
|
|
261
|
+
Te as useViewPersistence,
|
|
262
|
+
O as useVirtualList,
|
|
263
|
+
ue as useWorkerSort
|
|
251
264
|
};
|
package/dist/plugin.d.ts
CHANGED
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
import { App } from 'vue';
|
|
2
|
+
import { pluginComponentNames, pluginComponentRegistry, registerOneUIComponents } from './registry/plugin-components';
|
|
3
|
+
export { pluginComponentNames, pluginComponentRegistry, registerOneUIComponents };
|
|
2
4
|
export declare const OneflowUI: {
|
|
3
5
|
install(app: App): void;
|
|
4
6
|
};
|