@oneflowui/ui 0.5.1 → 0.5.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 +11 -8
- package/dist/components/Dashboard/charts/PieChart.vue.js +2 -2
- package/dist/components/Dashboard/charts/PieChart.vue2.js +8 -5
- package/dist/components/Dashboard/index.vue.js +1 -1
- package/dist/components/Dashboard/index.vue2.js +20 -25
- package/dist/components/editor/RichTextEditor.vue2.js +1 -1
- package/dist/components/table/DataTable.vue.js +1 -1
- package/dist/components/table/DataTable.vue2.js +134 -135
- package/dist/components/table/FieldCell.vue.js +2 -2
- package/dist/components/table/FieldCell.vue2.js +16 -15
- package/dist/composables/useMarkdown.js +23 -23
- package/dist/index.d.ts +1 -5
- package/dist/index.js +250 -350
- package/dist/plugin.d.ts +5 -0
- package/dist/plugin.js +197 -0
- package/dist/style.css +1 -1
- package/dist/utils/echarts.d.ts +2 -0
- package/dist/utils/icon.d.ts +0 -5
- package/dist/utils/icon.js +72 -11
- package/package.json +2 -3
- package/dist/_virtual/_commonjsHelpers.js +0 -6
- package/dist/node_modules/.pnpm/highlight.js@11.11.1/node_modules/highlight.js/es/core.js +0 -5
- package/dist/node_modules/.pnpm/highlight.js@11.11.1/node_modules/highlight.js/es/languages/bash.js +0 -377
- package/dist/node_modules/.pnpm/highlight.js@11.11.1/node_modules/highlight.js/es/languages/css.js +0 -923
- package/dist/node_modules/.pnpm/highlight.js@11.11.1/node_modules/highlight.js/es/languages/go.js +0 -151
- package/dist/node_modules/.pnpm/highlight.js@11.11.1/node_modules/highlight.js/es/languages/java.js +0 -240
- package/dist/node_modules/.pnpm/highlight.js@11.11.1/node_modules/highlight.js/es/languages/javascript.js +0 -658
- package/dist/node_modules/.pnpm/highlight.js@11.11.1/node_modules/highlight.js/es/languages/json.js +0 -38
- package/dist/node_modules/.pnpm/highlight.js@11.11.1/node_modules/highlight.js/es/languages/markdown.js +0 -216
- package/dist/node_modules/.pnpm/highlight.js@11.11.1/node_modules/highlight.js/es/languages/plaintext.js +0 -13
- package/dist/node_modules/.pnpm/highlight.js@11.11.1/node_modules/highlight.js/es/languages/python.js +0 -399
- package/dist/node_modules/.pnpm/highlight.js@11.11.1/node_modules/highlight.js/es/languages/rust.js +0 -305
- package/dist/node_modules/.pnpm/highlight.js@11.11.1/node_modules/highlight.js/es/languages/sql.js +0 -615
- package/dist/node_modules/.pnpm/highlight.js@11.11.1/node_modules/highlight.js/es/languages/typescript.js +0 -753
- package/dist/node_modules/.pnpm/highlight.js@11.11.1/node_modules/highlight.js/es/languages/xml.js +0 -219
- package/dist/node_modules/.pnpm/highlight.js@11.11.1/node_modules/highlight.js/es/languages/yaml.js +0 -183
- package/dist/node_modules/.pnpm/highlight.js@11.11.1/node_modules/highlight.js/lib/core.js +0 -1063
package/dist/index.js
CHANGED
|
@@ -1,354 +1,254 @@
|
|
|
1
|
-
import
|
|
2
|
-
import
|
|
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 { useDatabaseView as
|
|
25
|
-
import { useSearch as
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
import
|
|
29
|
-
import m from "./components/base/ToolbarBtn.vue.js";
|
|
30
|
-
import i from "./components/base/AddViewBtn.vue.js";
|
|
31
|
-
import s from "./components/base/Badge.vue.js";
|
|
32
|
-
import p from "./components/base/RangeSlider.vue.js";
|
|
33
|
-
import f from "./components/base/ProgressBar.vue.js";
|
|
34
|
-
import n from "./components/base/ButtonGroup.vue.js";
|
|
35
|
-
import l from "./components/base/EmptyState.vue.js";
|
|
36
|
-
import d from "./components/base/StatisticCard.vue.js";
|
|
37
|
-
import u from "./components/base/DropdownMenu.vue.js";
|
|
38
|
-
import b from "./components/base/StatusIndicator.vue.js";
|
|
39
|
-
import c from "./components/base/Switch.vue.js";
|
|
40
|
-
import T from "./components/base/Stepper.vue.js";
|
|
41
|
-
import S from "./components/base/Accordion.vue.js";
|
|
42
|
-
import w from "./components/base/Avatar.vue.js";
|
|
43
|
-
import C from "./components/layout/AppLayout.vue.js";
|
|
44
|
-
import B from "./components/layout/Navbar.vue.js";
|
|
45
|
-
import g from "./components/layout/Sidebar.vue.js";
|
|
46
|
-
import h from "./components/layout/StatusBar.vue.js";
|
|
47
|
-
import P from "./components/table/DataTable.vue.js";
|
|
48
|
-
import R from "./components/table/TableHeaderRow.vue.js";
|
|
49
|
-
import x from "./components/table/TableDataRow.vue.js";
|
|
50
|
-
import A from "./components/table/TableGroupRow.vue.js";
|
|
51
|
-
import D from "./components/table/NewRowBtn.vue.js";
|
|
52
|
-
import M from "./components/table/TableFilterPanel.vue.js";
|
|
53
|
-
import k from "./components/table/TableColumnManager.vue.js";
|
|
54
|
-
import I from "./components/table/TableToolbar.vue.js";
|
|
55
|
-
import y from "./components/table/FieldCell.vue.js";
|
|
56
|
-
import F from "./components/table/FieldTypePicker.vue.js";
|
|
57
|
-
import G from "./components/table/ColumnHeaderMenu.vue.js";
|
|
58
|
-
import V from "./components/kanban/KanbanBoard.vue.js";
|
|
59
|
-
import L from "./components/kanban/KanbanColumn.vue.js";
|
|
60
|
-
import v from "./components/kanban/KanbanCard.vue.js";
|
|
61
|
-
import _ from "./components/kanban/QuickAddRow.vue.js";
|
|
62
|
-
import E from "./components/gallery/GalleryView.vue.js";
|
|
63
|
-
import K from "./components/gallery/GalleryCard.vue.js";
|
|
64
|
-
import N from "./components/timeline/ActivityTimeline.vue.js";
|
|
65
|
-
import U from "./components/timeline/GanttTimeline.vue.js";
|
|
66
|
-
import H from "./components/timeline/GanttRow.vue.js";
|
|
67
|
-
import Q from "./components/editor/ContentBlock.vue.js";
|
|
68
|
-
import z from "./components/editor/BlockQuote.vue.js";
|
|
69
|
-
import O from "./components/editor/CodeBlock.vue.js";
|
|
70
|
-
import W from "./components/editor/RefLink.vue.js";
|
|
71
|
-
import Y from "./components/editor/RichTextEditor.vue.js";
|
|
72
|
-
import $ from "./components/form/FormDesigner.vue.js";
|
|
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";
|
|
93
|
-
import cr from "./components/overlay/Modal.vue.js";
|
|
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";
|
|
97
|
-
import Cr from "./components/toast/ToastContainer.vue.js";
|
|
1
|
+
import { default as o } from "./components/field/FieldMarkdownPreview.vue.js";
|
|
2
|
+
import { default as f } from "./components/ContextMenu/index.vue.js";
|
|
3
|
+
import { buildGalleryItems as s, buildGanttItems as u, buildKanbanColumns as m, dataRecordToTask as d, isFormulaField as p, isSelectField as x, taskToDataRecord as i } from "./types/index.js";
|
|
4
|
+
import { dataRecordToRow as b, fieldsToRow as c, rowToDataRecord as T, rowsToDataRecords as w, useSupabaseAdapter as S } from "./utils/supabaseAdapter.js";
|
|
5
|
+
import { fetchSchemaFromSupabase as g, humanizeColumnName as B, inferSchema as R } from "./utils/supabaseSchema.js";
|
|
6
|
+
import { useStream as P } from "./composables/useStream.js";
|
|
7
|
+
import { useTypewriter as A } from "./composables/useTypewriter.js";
|
|
8
|
+
import { useAiChat as M } from "./composables/useAiChat.js";
|
|
9
|
+
import { useTableFilter as I } from "./composables/useTableFilter.js";
|
|
10
|
+
import { useTable as G } from "./composables/useTable.js";
|
|
11
|
+
import { useMarkdown as L } from "./composables/useMarkdown.js";
|
|
12
|
+
import { useToast as U } from "./composables/useToast.js";
|
|
13
|
+
import { useVirtualList as K } from "./composables/useVirtualList.js";
|
|
14
|
+
import { useInlineEdit as _ } from "./composables/useInlineEdit.js";
|
|
15
|
+
import { useColumnResize as O } from "./composables/useColumnResize.js";
|
|
16
|
+
import { useFixedColumns as Q } from "./composables/useFixedColumns.js";
|
|
17
|
+
import { useKeyboardNavigation as Y } from "./composables/useKeyboardNavigation.js";
|
|
18
|
+
import { useRowDrag as q } from "./composables/useRowDrag.js";
|
|
19
|
+
import { useDraftRows as X } from "./composables/useDraftRows.js";
|
|
20
|
+
import { useWorkerSort as $ } from "./composables/useWorkerSort.js";
|
|
21
|
+
import { useSchemaEngine as ae } from "./composables/useSchemaEngine.js";
|
|
22
|
+
import { useSupabaseProvider as oe } from "./composables/useSupabaseProvider.js";
|
|
23
|
+
import { createLocalStorageBackend as fe, createSupabaseBackend as le, useViewPersistence as se } from "./composables/useViewPersistence.js";
|
|
24
|
+
import { useDatabaseView as me } from "./composables/useDatabaseView.js";
|
|
25
|
+
import { useSearch as pe } from "./composables/useSearch.js";
|
|
26
|
+
import { OneflowUI as ie, OneflowUI as ne } from "./plugin.js";
|
|
27
|
+
import { default as ce } from "./components/Dashboard/charts/DoughnutChart.vue.js";
|
|
28
|
+
import { default as we } from "./components/toast/ToastContainer.vue.js";
|
|
98
29
|
/* empty css */
|
|
99
|
-
import
|
|
100
|
-
import
|
|
101
|
-
import
|
|
102
|
-
import
|
|
103
|
-
import
|
|
104
|
-
import
|
|
105
|
-
import
|
|
106
|
-
import
|
|
107
|
-
import
|
|
108
|
-
import
|
|
109
|
-
import
|
|
110
|
-
import
|
|
111
|
-
import
|
|
112
|
-
import
|
|
113
|
-
import
|
|
114
|
-
import
|
|
115
|
-
import
|
|
116
|
-
import
|
|
117
|
-
import
|
|
118
|
-
import {
|
|
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
|
-
Tr,
|
|
188
|
-
Sr,
|
|
189
|
-
wr,
|
|
190
|
-
Cr,
|
|
191
|
-
Br,
|
|
192
|
-
gr,
|
|
193
|
-
hr,
|
|
194
|
-
Pr,
|
|
195
|
-
Rr,
|
|
196
|
-
xr,
|
|
197
|
-
Ar,
|
|
198
|
-
Dr,
|
|
199
|
-
Mr,
|
|
200
|
-
kr,
|
|
201
|
-
Ir,
|
|
202
|
-
e,
|
|
203
|
-
yr,
|
|
204
|
-
Fr,
|
|
205
|
-
Gr,
|
|
206
|
-
Vr,
|
|
207
|
-
Lr,
|
|
208
|
-
vr,
|
|
209
|
-
_r,
|
|
210
|
-
Er
|
|
211
|
-
], Da = {
|
|
212
|
-
install(o) {
|
|
213
|
-
Kr.forEach((r) => {
|
|
214
|
-
o.component(r.name || r.__name || "", r);
|
|
215
|
-
});
|
|
216
|
-
}
|
|
217
|
-
};
|
|
30
|
+
import { default as Ce } from "./components/base/Accordion.vue.js";
|
|
31
|
+
import { default as Be } from "./components/timeline/ActivityTimeline.vue.js";
|
|
32
|
+
import { default as he } from "./components/base/AddViewBtn.vue.js";
|
|
33
|
+
import { default as De } from "./components/ai/AiMessageBubble.vue.js";
|
|
34
|
+
import { default as ke } from "./components/ai/AiMessageList.vue.js";
|
|
35
|
+
import { default as Fe } from "./components/ai/AiSender.vue.js";
|
|
36
|
+
import { default as ye } from "./components/ai/AiStreamingCursor.vue.js";
|
|
37
|
+
import { default as Ve } from "./components/ai/AiThinking.vue.js";
|
|
38
|
+
import { default as ve } from "./components/layout/AppLayout.vue.js";
|
|
39
|
+
import { default as Ee } from "./components/base/Avatar.vue.js";
|
|
40
|
+
import { default as Ne } from "./components/base/Badge.vue.js";
|
|
41
|
+
import { default as He } from "./components/Dashboard/charts/BarChart.vue.js";
|
|
42
|
+
import { default as ze } from "./components/editor/BlockQuote.vue.js";
|
|
43
|
+
import { default as We } from "./components/breadcrumb/Breadcrumb.vue.js";
|
|
44
|
+
import { default as je } from "./components/breadcrumb/BreadcrumbItem.vue.js";
|
|
45
|
+
import { default as Je } from "./components/base/ButtonGroup.vue.js";
|
|
46
|
+
import { default as Ze } from "./components/base/ChainItem.vue.js";
|
|
47
|
+
import { default as ea } from "./components/editor/CodeBlock.vue.js";
|
|
48
|
+
import { default as ra } from "./components/auxiliary/ColorPanel.vue.js";
|
|
49
|
+
import { default as ta } from "./components/table/ColumnHeaderMenu.vue.js";
|
|
50
|
+
import { default as la } from "./components/detail/CommentItem.vue.js";
|
|
51
|
+
import { default as ua } from "./components/editor/ContentBlock.vue.js";
|
|
52
|
+
import { DEFAULT_PRIORITY_MAP as da, DEFAULT_STATUS_MAP as pa, mergeColorMap as xa, resolveBadge as ia, useBadge as na } from "./composables/useBadge.js";
|
|
53
|
+
import { default as ca } from "./components/Dashboard/index.vue.js";
|
|
54
|
+
import { default as wa } from "./components/table/DataTable.vue.js";
|
|
55
|
+
import { default as Ca } from "./components/database/DatabaseView.vue.js";
|
|
56
|
+
import { default as Ba } from "./components/base/DescBlock.vue.js";
|
|
57
|
+
import { default as ha } from "./components/detail/DetailLayout.vue.js";
|
|
58
|
+
import { default as Da } from "./components/overlay/Dialog.vue.js";
|
|
59
|
+
import { default as ka } from "./components/overlay/Drawer.vue.js";
|
|
60
|
+
import { default as Fa } from "./components/base/DropdownMenu.vue.js";
|
|
61
|
+
import { default as ya } from "./components/base/EmptyState.vue.js";
|
|
62
|
+
import { default as Va } from "./components/table/FieldCell.vue.js";
|
|
63
|
+
import { default as va } from "./components/table/FieldTypePicker.vue.js";
|
|
64
|
+
import { default as Ea } from "./components/auxiliary/FileUpload.vue.js";
|
|
65
|
+
import { default as Na } from "./components/form/FormDesigner.vue.js";
|
|
66
|
+
import { default as Ha } from "./components/gallery/GalleryCard.vue.js";
|
|
67
|
+
import { default as za } from "./components/gallery/GalleryView.vue.js";
|
|
68
|
+
import { default as Wa } from "./components/timeline/GanttRow.vue.js";
|
|
69
|
+
import { default as ja } from "./components/timeline/GanttTimeline.vue.js";
|
|
70
|
+
import { default as Ja } from "./components/base/InfoCard.vue.js";
|
|
71
|
+
import { default as Za } from "./components/kanban/KanbanBoard.vue.js";
|
|
72
|
+
import { default as er } from "./components/kanban/KanbanCard.vue.js";
|
|
73
|
+
import { default as rr } from "./components/kanban/KanbanColumn.vue.js";
|
|
74
|
+
import { default as tr } from "./components/mermaid/MermaidChart.vue.js";
|
|
75
|
+
import { default as lr } from "./components/overlay/Modal.vue.js";
|
|
76
|
+
import { default as ur } from "./components/base/MonitorItem.vue.js";
|
|
77
|
+
import { default as dr } from "./components/layout/Navbar.vue.js";
|
|
78
|
+
import { default as xr } from "./components/table/NewRowBtn.vue.js";
|
|
79
|
+
import { default as nr } from "./components/Dashboard/charts/NumberCard.vue.js";
|
|
80
|
+
import { default as cr } from "./components/auxiliary/PersonPanel.vue.js";
|
|
81
|
+
import { default as wr } from "./components/base/PersonaCard.vue.js";
|
|
82
|
+
import { default as Cr } from "./components/Dashboard/charts/PieChart.vue.js";
|
|
83
|
+
import { default as Br } from "./components/base/ProgressBar.vue.js";
|
|
84
|
+
import { default as hr } from "./components/detail/PropPanel.vue.js";
|
|
85
|
+
import { default as Dr } from "./components/detail/PropRow.vue.js";
|
|
86
|
+
import { default as kr } from "./components/kanban/QuickAddRow.vue.js";
|
|
87
|
+
import { default as Fr } from "./components/base/RangeSlider.vue.js";
|
|
88
|
+
import { default as yr } from "./components/editor/RefLink.vue.js";
|
|
89
|
+
import { default as Vr } from "./components/base/RefTag.vue.js";
|
|
90
|
+
import { default as vr } from "./components/editor/RichTextEditor.vue.js";
|
|
91
|
+
import { default as Er } from "./components/base/SearchHighlight.vue.js";
|
|
92
|
+
import { default as Nr } from "./components/base/SectionBlock.vue.js";
|
|
93
|
+
import { default as Hr } from "./components/base/SelectBadge.vue.js";
|
|
94
|
+
import { default as zr } from "./components/overlay/SidePanel.vue.js";
|
|
95
|
+
import { default as Wr } from "./components/layout/Sidebar.vue.js";
|
|
96
|
+
import { default as jr } from "./components/split/SplitPane.vue.js";
|
|
97
|
+
import { default as Jr } from "./components/base/StatisticCard.vue.js";
|
|
98
|
+
import { default as Zr } from "./components/layout/StatusBar.vue.js";
|
|
99
|
+
import { default as eo } from "./components/base/StatusIndicator.vue.js";
|
|
100
|
+
import { default as ro } from "./components/base/StatusSummary.vue.js";
|
|
101
|
+
import { default as to } from "./components/base/Stepper.vue.js";
|
|
102
|
+
import { default as lo } from "./components/base/Switch.vue.js";
|
|
103
|
+
import { default as uo } from "./components/tabs/TabPanel.vue.js";
|
|
104
|
+
import { default as po } from "./components/Dashboard/charts/TableChart.vue.js";
|
|
105
|
+
import { default as io } from "./components/table/TableColumnManager.vue.js";
|
|
106
|
+
import { default as bo } from "./components/table/TableDataRow.vue.js";
|
|
107
|
+
import { default as To } from "./components/table/TableFilterPanel.vue.js";
|
|
108
|
+
import { default as So } from "./components/table/TableGroupRow.vue.js";
|
|
109
|
+
import { default as go } from "./components/table/TableHeaderRow.vue.js";
|
|
110
|
+
import { default as Ro } from "./components/table/TableToolbar.vue.js";
|
|
111
|
+
import { default as Po } from "./components/tabs/Tabs.vue.js";
|
|
112
|
+
import { default as Ao } from "./components/toast/ToastItem.vue.js";
|
|
113
|
+
import { default as Mo } from "./components/base/ToolbarBtn.vue.js";
|
|
114
|
+
import { default as Io } from "./components/ai/UserMessageBubble.vue.js";
|
|
115
|
+
import { default as Go } from "./components/base/ViewModeGroup.vue.js";
|
|
116
|
+
import { default as Lo } from "./components/base/ViewSwitcher.vue.js";
|
|
117
|
+
import { default as Uo } from "./components/base/ViewTab.vue.js";
|
|
218
118
|
export {
|
|
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
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
119
|
+
Ce as Accordion,
|
|
120
|
+
Be as ActivityTimeline,
|
|
121
|
+
he as AddViewBtn,
|
|
122
|
+
De as AiMessageBubble,
|
|
123
|
+
ke as AiMessageList,
|
|
124
|
+
Fe as AiSender,
|
|
125
|
+
ye as AiStreamingCursor,
|
|
126
|
+
Ve as AiThinking,
|
|
127
|
+
ve as AppLayout,
|
|
128
|
+
Ee as Avatar,
|
|
129
|
+
Ne as Badge,
|
|
130
|
+
He as BarChart,
|
|
131
|
+
ze as BlockQuote,
|
|
132
|
+
We as Breadcrumb,
|
|
133
|
+
je as BreadcrumbItem,
|
|
134
|
+
Je as ButtonGroup,
|
|
135
|
+
Ze as ChainItem,
|
|
136
|
+
ea as CodeBlock,
|
|
137
|
+
ra as ColorPanel,
|
|
138
|
+
ta as ColumnHeaderMenu,
|
|
139
|
+
la as CommentItem,
|
|
140
|
+
ua as ContentBlock,
|
|
141
|
+
f as ContextMenu,
|
|
142
|
+
da as DEFAULT_PRIORITY_MAP,
|
|
143
|
+
pa as DEFAULT_STATUS_MAP,
|
|
144
|
+
ca as Dashboard,
|
|
145
|
+
wa as DataTable,
|
|
146
|
+
Ca as DatabaseView,
|
|
147
|
+
Ba as DescBlock,
|
|
148
|
+
ha as DetailLayout,
|
|
149
|
+
Da as Dialog,
|
|
150
|
+
ce as DoughnutChart,
|
|
151
|
+
ka as Drawer,
|
|
152
|
+
Fa as DropdownMenu,
|
|
153
|
+
ya as EmptyState,
|
|
154
|
+
Va as FieldCell,
|
|
155
|
+
o as FieldMarkdownPreview,
|
|
156
|
+
va as FieldTypePicker,
|
|
157
|
+
Ea as FileUpload,
|
|
158
|
+
Na as FormDesigner,
|
|
159
|
+
Ha as GalleryCard,
|
|
160
|
+
za as GalleryView,
|
|
161
|
+
Wa as GanttRow,
|
|
162
|
+
ja as GanttTimeline,
|
|
163
|
+
Ja as InfoCard,
|
|
164
|
+
Za as KanbanBoard,
|
|
165
|
+
er as KanbanCard,
|
|
166
|
+
rr as KanbanColumn,
|
|
167
|
+
tr as MermaidChart,
|
|
168
|
+
lr as Modal,
|
|
169
|
+
ur as MonitorItem,
|
|
170
|
+
dr as Navbar,
|
|
171
|
+
xr as NewRowBtn,
|
|
172
|
+
nr as NumberCard,
|
|
173
|
+
ie as OneflowUI,
|
|
174
|
+
cr as PersonPanel,
|
|
175
|
+
wr as PersonaCard,
|
|
176
|
+
Cr as PieChart,
|
|
177
|
+
Br as ProgressBar,
|
|
178
|
+
hr as PropPanel,
|
|
179
|
+
Dr as PropRow,
|
|
180
|
+
kr as QuickAddRow,
|
|
181
|
+
Fr as RangeSlider,
|
|
182
|
+
yr as RefLink,
|
|
183
|
+
Vr as RefTag,
|
|
184
|
+
vr as RichTextEditor,
|
|
285
185
|
Er as SearchHighlight,
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
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
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
186
|
+
Nr as SectionBlock,
|
|
187
|
+
Hr as SelectBadge,
|
|
188
|
+
zr as SidePanel,
|
|
189
|
+
Wr as Sidebar,
|
|
190
|
+
jr as SplitPane,
|
|
191
|
+
Jr as StatisticCard,
|
|
192
|
+
Zr as StatusBar,
|
|
193
|
+
eo as StatusIndicator,
|
|
194
|
+
ro as StatusSummary,
|
|
195
|
+
to as Stepper,
|
|
196
|
+
lo as Switch,
|
|
197
|
+
uo as TabPanel,
|
|
198
|
+
po as TableChart,
|
|
199
|
+
io as TableColumnManager,
|
|
200
|
+
bo as TableDataRow,
|
|
201
|
+
To as TableFilterPanel,
|
|
202
|
+
So as TableGroupRow,
|
|
203
|
+
go as TableHeaderRow,
|
|
204
|
+
Ro as TableToolbar,
|
|
205
|
+
Po as Tabs,
|
|
206
|
+
we as ToastContainer,
|
|
207
|
+
Ao as ToastItem,
|
|
208
|
+
Mo as ToolbarBtn,
|
|
209
|
+
Io as UserMessageBubble,
|
|
210
|
+
Go as ViewModeGroup,
|
|
211
|
+
Lo as ViewSwitcher,
|
|
212
|
+
Uo as ViewTab,
|
|
213
|
+
s as buildGalleryItems,
|
|
214
|
+
u as buildGanttItems,
|
|
215
|
+
m as buildKanbanColumns,
|
|
216
|
+
fe as createLocalStorageBackend,
|
|
217
|
+
le as createSupabaseBackend,
|
|
218
|
+
b as dataRecordToRow,
|
|
219
|
+
d as dataRecordToTask,
|
|
220
|
+
ne as default,
|
|
221
|
+
g as fetchSchemaFromSupabase,
|
|
222
|
+
c as fieldsToRow,
|
|
223
|
+
B as humanizeColumnName,
|
|
224
|
+
R as inferSchema,
|
|
225
|
+
p as isFormulaField,
|
|
226
|
+
x as isSelectField,
|
|
227
|
+
xa as mergeColorMap,
|
|
228
|
+
ia as resolveBadge,
|
|
229
|
+
T as rowToDataRecord,
|
|
230
|
+
w as rowsToDataRecords,
|
|
231
|
+
i as taskToDataRecord,
|
|
232
|
+
M as useAiChat,
|
|
233
|
+
na as useBadge,
|
|
234
|
+
O as useColumnResize,
|
|
235
|
+
me as useDatabaseView,
|
|
236
|
+
X as useDraftRows,
|
|
237
|
+
Q as useFixedColumns,
|
|
238
|
+
_ as useInlineEdit,
|
|
239
|
+
Y as useKeyboardNavigation,
|
|
240
|
+
L as useMarkdown,
|
|
241
|
+
q as useRowDrag,
|
|
242
|
+
ae as useSchemaEngine,
|
|
243
|
+
pe as useSearch,
|
|
244
|
+
P as useStream,
|
|
245
|
+
S as useSupabaseAdapter,
|
|
246
|
+
oe as useSupabaseProvider,
|
|
247
|
+
G as useTable,
|
|
248
|
+
I as useTableFilter,
|
|
249
|
+
U as useToast,
|
|
250
|
+
A as useTypewriter,
|
|
251
|
+
se as useViewPersistence,
|
|
252
|
+
K as useVirtualList,
|
|
253
|
+
$ as useWorkerSort
|
|
354
254
|
};
|