@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
|
@@ -1,22 +1,13 @@
|
|
|
1
|
-
import { defineComponent as
|
|
2
|
-
import
|
|
3
|
-
import { useMarkdown as
|
|
4
|
-
const
|
|
1
|
+
import { defineComponent as k, h as r, Teleport as N, Transition as j, ref as z, computed as c, openBlock as s, createBlock as p, unref as O, withCtx as R, createElementVNode as n, normalizeClass as g, createElementBlock as u, Fragment as C, renderList as w, toDisplayString as v, createCommentVNode as q } from "vue";
|
|
2
|
+
import A from "./FieldCell.vue.js";
|
|
3
|
+
import { useMarkdown as G } from "../../composables/useMarkdown.js";
|
|
4
|
+
const I = { class: "of-detail-sheet__properties" }, J = { class: "of-detail-sheet__label" }, Q = { class: "of-detail-sheet__cell" }, U = {
|
|
5
5
|
key: 1,
|
|
6
6
|
class: "of-detail-sheet__value"
|
|
7
|
-
},
|
|
7
|
+
}, W = {
|
|
8
8
|
key: 0,
|
|
9
9
|
class: "of-detail-sheet__content"
|
|
10
|
-
},
|
|
11
|
-
key: 1,
|
|
12
|
-
class: "of-detail-sheet-shell of-detail-sheet-shell--embedded"
|
|
13
|
-
}, Z = { class: "of-detail-sheet__properties" }, $ = { class: "of-detail-sheet__label" }, K = { class: "of-detail-sheet__cell" }, ee = {
|
|
14
|
-
key: 1,
|
|
15
|
-
class: "of-detail-sheet__value"
|
|
16
|
-
}, te = {
|
|
17
|
-
key: 0,
|
|
18
|
-
class: "of-detail-sheet__content"
|
|
19
|
-
}, le = { class: "of-detail-sheet__content-label" }, se = ["innerHTML"], oe = { class: "of-detail-sheet__footer" }, ae = ["disabled"], fe = /* @__PURE__ */ H({
|
|
10
|
+
}, X = { class: "of-detail-sheet__content-label" }, Y = ["innerHTML"], Z = { class: "of-detail-sheet__footer" }, $ = ["disabled"], le = /* @__PURE__ */ k({
|
|
20
11
|
__name: "DetailSheet",
|
|
21
12
|
props: {
|
|
22
13
|
row: {},
|
|
@@ -29,196 +20,178 @@ const q = { class: "of-detail-sheet__properties" }, A = { class: "of-detail-shee
|
|
|
29
20
|
readonly: { type: Boolean }
|
|
30
21
|
},
|
|
31
22
|
emits: ["close", "save", "delete", "cell-edit"],
|
|
32
|
-
setup(
|
|
33
|
-
const
|
|
34
|
-
|
|
23
|
+
setup(i, { emit: B }) {
|
|
24
|
+
const a = i, f = B, { renderMarkdown: D } = G({ showCopyButton: !0 }), S = k({
|
|
25
|
+
name: "DetailSheetShell",
|
|
26
|
+
props: {
|
|
27
|
+
embedded: {
|
|
28
|
+
type: Boolean,
|
|
29
|
+
default: !1
|
|
30
|
+
},
|
|
31
|
+
visible: {
|
|
32
|
+
type: Boolean,
|
|
33
|
+
default: !1
|
|
34
|
+
},
|
|
35
|
+
fullPage: {
|
|
36
|
+
type: Boolean,
|
|
37
|
+
default: !1
|
|
38
|
+
}
|
|
39
|
+
},
|
|
40
|
+
emits: {
|
|
41
|
+
cancel: () => !0
|
|
42
|
+
},
|
|
43
|
+
setup(e, { emit: l, slots: t }) {
|
|
44
|
+
return () => {
|
|
45
|
+
var d;
|
|
46
|
+
return e.embedded ? e.visible ? r(
|
|
47
|
+
"div",
|
|
48
|
+
{ class: ["of-detail-sheet-shell", "of-detail-sheet-shell--embedded"] },
|
|
49
|
+
(d = t.default) == null ? void 0 : d.call(t)
|
|
50
|
+
) : null : r(
|
|
51
|
+
N,
|
|
52
|
+
{ to: "body" },
|
|
53
|
+
r(
|
|
54
|
+
j,
|
|
55
|
+
{ name: "of-sheet" },
|
|
56
|
+
{
|
|
57
|
+
default: () => {
|
|
58
|
+
var y;
|
|
59
|
+
return e.visible ? r(
|
|
60
|
+
"div",
|
|
61
|
+
{
|
|
62
|
+
class: [
|
|
63
|
+
"of-detail-sheet-overlay",
|
|
64
|
+
{ "of-detail-sheet-overlay--full-page": e.fullPage }
|
|
65
|
+
]
|
|
66
|
+
},
|
|
67
|
+
[
|
|
68
|
+
r("button", {
|
|
69
|
+
type: "button",
|
|
70
|
+
class: "of-detail-sheet-overlay__hitarea",
|
|
71
|
+
"aria-label": "关闭详情",
|
|
72
|
+
onClick: () => l("cancel")
|
|
73
|
+
}),
|
|
74
|
+
...((y = t.default) == null ? void 0 : y.call(t)) ?? []
|
|
75
|
+
]
|
|
76
|
+
) : null;
|
|
77
|
+
}
|
|
78
|
+
}
|
|
79
|
+
)
|
|
80
|
+
);
|
|
81
|
+
};
|
|
82
|
+
}
|
|
83
|
+
}), o = z({}), F = c(() => Object.keys(o.value).length > 0), x = c(() => a.embedded || a.visible), M = c(() => new Set(a.contentFields ?? []));
|
|
84
|
+
function m(e) {
|
|
35
85
|
var t;
|
|
36
|
-
if (
|
|
37
|
-
const l = (t =
|
|
86
|
+
if (M.value.has(e.key)) return !0;
|
|
87
|
+
const l = (t = a.fieldDefs) == null ? void 0 : t.find((d) => d.id === e.key);
|
|
38
88
|
return (l == null ? void 0 : l.type) === "richtext";
|
|
39
89
|
}
|
|
40
|
-
const
|
|
41
|
-
function
|
|
90
|
+
const T = c(() => a.columns.filter((e) => !m(e))), b = c(() => a.columns.filter((e) => m(e)));
|
|
91
|
+
function V(e) {
|
|
42
92
|
var l;
|
|
43
|
-
return ((l =
|
|
44
|
-
id:
|
|
93
|
+
return ((l = a.fieldDefs) == null ? void 0 : l.find((t) => t.id === e)) ?? {
|
|
94
|
+
id: e,
|
|
45
95
|
type: "text",
|
|
46
|
-
label:
|
|
96
|
+
label: e
|
|
47
97
|
};
|
|
48
98
|
}
|
|
49
|
-
function
|
|
50
|
-
return
|
|
99
|
+
function h(e) {
|
|
100
|
+
return e.key in o.value ? o.value[e.key] : a.row[e.key];
|
|
51
101
|
}
|
|
52
|
-
function
|
|
53
|
-
const l =
|
|
54
|
-
return typeof l != "string" || !l ? "" :
|
|
102
|
+
function L(e) {
|
|
103
|
+
const l = h(e);
|
|
104
|
+
return typeof l != "string" || !l ? "" : D(l);
|
|
55
105
|
}
|
|
56
|
-
function
|
|
57
|
-
|
|
106
|
+
function P(e, l, t) {
|
|
107
|
+
o.value = { ...o.value, [l]: t }, f("cell-edit", { rowId: e, fieldId: l, value: t });
|
|
58
108
|
}
|
|
59
|
-
function
|
|
60
|
-
|
|
109
|
+
function E() {
|
|
110
|
+
f("save", { rowId: a.row.id, fields: { ...o.value } }), o.value = {}, f("close");
|
|
61
111
|
}
|
|
62
|
-
function
|
|
63
|
-
|
|
112
|
+
function _() {
|
|
113
|
+
o.value = {}, f("close");
|
|
64
114
|
}
|
|
65
|
-
function
|
|
66
|
-
|
|
115
|
+
function H() {
|
|
116
|
+
f("delete", a.row.id), f("close");
|
|
67
117
|
}
|
|
68
|
-
return (
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
l[3] || (l[3] = e("h3", { class: "of-detail-sheet__title" }, "记录详情", -1)),
|
|
78
|
-
l[4] || (l[4] = e("div", { class: "of-detail-sheet__header-spacer" }, null, -1))
|
|
79
|
-
]),
|
|
80
|
-
e("div", {
|
|
81
|
-
class: v(["of-detail-sheet__body", { "of-detail-sheet__body--full-page": n.fullPage }])
|
|
118
|
+
return (e, l) => (s(), p(O(S), {
|
|
119
|
+
embedded: i.embedded,
|
|
120
|
+
visible: x.value,
|
|
121
|
+
"full-page": i.fullPage,
|
|
122
|
+
onCancel: _
|
|
123
|
+
}, {
|
|
124
|
+
default: R(() => [
|
|
125
|
+
n("div", {
|
|
126
|
+
class: g(["of-detail-sheet", { "of-detail-sheet--full-page": i.fullPage }])
|
|
82
127
|
}, [
|
|
83
|
-
|
|
84
|
-
(
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
e("span", $, _(t.label), 1),
|
|
91
|
-
e("div", K, [
|
|
92
|
-
(f = n.fieldDefs) != null && f.length ? (o(), C(x, {
|
|
93
|
-
key: 0,
|
|
94
|
-
"row-id": n.row.id,
|
|
95
|
-
field: B(t.key),
|
|
96
|
-
value: u(t),
|
|
97
|
-
readonly: n.readonly,
|
|
98
|
-
onCommit: M
|
|
99
|
-
}, null, 8, ["row-id", "field", "value", "readonly"])) : (o(), a("span", ee, _(u(t) ?? "—"), 1))
|
|
100
|
-
])
|
|
101
|
-
]);
|
|
102
|
-
}), 128))
|
|
128
|
+
n("div", { class: "of-detail-sheet__header" }, [
|
|
129
|
+
n("button", {
|
|
130
|
+
class: "of-detail-sheet__close",
|
|
131
|
+
onClick: _
|
|
132
|
+
}, "✕"),
|
|
133
|
+
l[0] || (l[0] = n("h3", { class: "of-detail-sheet__title" }, "记录详情", -1)),
|
|
134
|
+
l[1] || (l[1] = n("div", { class: "of-detail-sheet__header-spacer" }, null, -1))
|
|
103
135
|
]),
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
key: t.key,
|
|
107
|
-
class: "of-detail-sheet__content-block"
|
|
108
|
-
}, [
|
|
109
|
-
e("span", le, _(t.label), 1),
|
|
110
|
-
e("div", {
|
|
111
|
-
class: "of-detail-sheet__markdown of-markdown",
|
|
112
|
-
innerHTML: F(t)
|
|
113
|
-
}, null, 8, se)
|
|
114
|
-
]))), 128))
|
|
115
|
-
])) : m("", !0)
|
|
116
|
-
], 2),
|
|
117
|
-
e("div", oe, [
|
|
118
|
-
e("button", {
|
|
119
|
-
class: "of-detail-sheet__btn of-detail-sheet__btn--delete",
|
|
120
|
-
onClick: T
|
|
121
|
-
}, " 删除 "),
|
|
122
|
-
l[5] || (l[5] = e("div", { class: "of-detail-sheet__footer-spacer" }, null, -1)),
|
|
123
|
-
e("button", {
|
|
124
|
-
class: "of-detail-sheet__btn of-detail-sheet__btn--cancel",
|
|
125
|
-
onClick: c
|
|
126
|
-
}, " 取消 "),
|
|
127
|
-
e("button", {
|
|
128
|
-
class: "of-detail-sheet__btn of-detail-sheet__btn--save",
|
|
129
|
-
disabled: !g.value,
|
|
130
|
-
onClick: P
|
|
131
|
-
}, " 保存 ", 8, ae)
|
|
132
|
-
])
|
|
133
|
-
], 2)
|
|
134
|
-
])) : m("", !0) : (o(), C(E, {
|
|
135
|
-
key: 0,
|
|
136
|
-
to: "body"
|
|
137
|
-
}, [
|
|
138
|
-
j(z, { name: "of-sheet" }, {
|
|
139
|
-
default: O(() => [
|
|
140
|
-
p.value ? (o(), a("div", {
|
|
141
|
-
key: 0,
|
|
142
|
-
class: v(["of-detail-sheet-overlay", { "of-detail-sheet-overlay--full-page": n.fullPage }])
|
|
136
|
+
n("div", {
|
|
137
|
+
class: g(["of-detail-sheet__body", { "of-detail-sheet__body--full-page": i.fullPage }])
|
|
143
138
|
}, [
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
139
|
+
n("div", I, [
|
|
140
|
+
(s(!0), u(C, null, w(T.value, (t) => {
|
|
141
|
+
var d;
|
|
142
|
+
return s(), u("div", {
|
|
143
|
+
key: t.key,
|
|
144
|
+
class: "of-detail-sheet__field"
|
|
145
|
+
}, [
|
|
146
|
+
n("span", J, v(t.label), 1),
|
|
147
|
+
n("div", Q, [
|
|
148
|
+
(d = i.fieldDefs) != null && d.length ? (s(), p(A, {
|
|
149
|
+
key: 0,
|
|
150
|
+
"row-id": i.row.id,
|
|
151
|
+
field: V(t.key),
|
|
152
|
+
value: h(t),
|
|
153
|
+
readonly: i.readonly,
|
|
154
|
+
onCommit: P
|
|
155
|
+
}, null, 8, ["row-id", "field", "value", "readonly"])) : (s(), u("span", U, v(h(t) ?? "—"), 1))
|
|
156
|
+
])
|
|
157
|
+
]);
|
|
158
|
+
}), 128))
|
|
159
|
+
]),
|
|
160
|
+
b.value.length > 0 ? (s(), u("div", W, [
|
|
161
|
+
(s(!0), u(C, null, w(b.value, (t) => (s(), u("div", {
|
|
162
|
+
key: t.key,
|
|
163
|
+
class: "of-detail-sheet__content-block"
|
|
163
164
|
}, [
|
|
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
|
-
class: "of-detail-sheet__markdown of-markdown",
|
|
193
|
-
innerHTML: F(t)
|
|
194
|
-
}, null, 8, U)
|
|
195
|
-
]))), 128))
|
|
196
|
-
])) : m("", !0)
|
|
197
|
-
], 2),
|
|
198
|
-
e("div", W, [
|
|
199
|
-
e("button", {
|
|
200
|
-
class: "of-detail-sheet__btn of-detail-sheet__btn--delete",
|
|
201
|
-
onClick: T
|
|
202
|
-
}, " 删除 "),
|
|
203
|
-
l[2] || (l[2] = e("div", { class: "of-detail-sheet__footer-spacer" }, null, -1)),
|
|
204
|
-
e("button", {
|
|
205
|
-
class: "of-detail-sheet__btn of-detail-sheet__btn--cancel",
|
|
206
|
-
onClick: c
|
|
207
|
-
}, " 取消 "),
|
|
208
|
-
e("button", {
|
|
209
|
-
class: "of-detail-sheet__btn of-detail-sheet__btn--save",
|
|
210
|
-
disabled: !g.value,
|
|
211
|
-
onClick: P
|
|
212
|
-
}, " 保存 ", 8, X)
|
|
213
|
-
])
|
|
214
|
-
], 2)
|
|
215
|
-
], 2)) : m("", !0)
|
|
216
|
-
]),
|
|
217
|
-
_: 1
|
|
218
|
-
})
|
|
219
|
-
]));
|
|
165
|
+
n("span", X, v(t.label), 1),
|
|
166
|
+
n("div", {
|
|
167
|
+
class: "of-detail-sheet__markdown of-markdown",
|
|
168
|
+
innerHTML: L(t)
|
|
169
|
+
}, null, 8, Y)
|
|
170
|
+
]))), 128))
|
|
171
|
+
])) : q("", !0)
|
|
172
|
+
], 2),
|
|
173
|
+
n("div", Z, [
|
|
174
|
+
n("button", {
|
|
175
|
+
class: "of-detail-sheet__btn of-detail-sheet__btn--delete",
|
|
176
|
+
onClick: H
|
|
177
|
+
}, " 删除 "),
|
|
178
|
+
l[2] || (l[2] = n("div", { class: "of-detail-sheet__footer-spacer" }, null, -1)),
|
|
179
|
+
n("button", {
|
|
180
|
+
class: "of-detail-sheet__btn of-detail-sheet__btn--cancel",
|
|
181
|
+
onClick: _
|
|
182
|
+
}, " 取消 "),
|
|
183
|
+
n("button", {
|
|
184
|
+
class: "of-detail-sheet__btn of-detail-sheet__btn--save",
|
|
185
|
+
disabled: !F.value,
|
|
186
|
+
onClick: E
|
|
187
|
+
}, " 保存 ", 8, $)
|
|
188
|
+
])
|
|
189
|
+
], 2)
|
|
190
|
+
]),
|
|
191
|
+
_: 1
|
|
192
|
+
}, 8, ["embedded", "visible", "full-page"]));
|
|
220
193
|
}
|
|
221
194
|
});
|
|
222
195
|
export {
|
|
223
|
-
|
|
196
|
+
le as default
|
|
224
197
|
};
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import o from "./FieldTypePicker.vue2.js";
|
|
2
2
|
/* empty css */
|
|
3
|
-
import
|
|
4
|
-
const
|
|
3
|
+
import r from "../../_virtual/_plugin-vue_export-helper.js";
|
|
4
|
+
const a = /* @__PURE__ */ r(o, [["__scopeId", "data-v-68d838a3"]]);
|
|
5
5
|
export {
|
|
6
|
-
|
|
6
|
+
a as default
|
|
7
7
|
};
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import o from "./MobileListView.vue2.js";
|
|
2
2
|
/* empty css */
|
|
3
3
|
import t from "../../_virtual/_plugin-vue_export-helper.js";
|
|
4
|
-
const f = /* @__PURE__ */ t(o, [["__scopeId", "data-v-
|
|
4
|
+
const f = /* @__PURE__ */ t(o, [["__scopeId", "data-v-981fdbd7"]]);
|
|
5
5
|
export {
|
|
6
6
|
f as default
|
|
7
7
|
};
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import o from "./TableColumnManager.vue2.js";
|
|
2
2
|
/* empty css */
|
|
3
|
-
import
|
|
4
|
-
const
|
|
3
|
+
import a from "../../_virtual/_plugin-vue_export-helper.js";
|
|
4
|
+
const e = /* @__PURE__ */ a(o, [["__scopeId", "data-v-0801bb6b"]]);
|
|
5
5
|
export {
|
|
6
|
-
|
|
6
|
+
e as default
|
|
7
7
|
};
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import
|
|
1
|
+
import a from "./TableDataRow.vue2.js";
|
|
2
2
|
/* empty css */
|
|
3
|
-
import
|
|
4
|
-
const
|
|
3
|
+
import o from "../../_virtual/_plugin-vue_export-helper.js";
|
|
4
|
+
const p = /* @__PURE__ */ o(a, [["__scopeId", "data-v-617a05a1"]]);
|
|
5
5
|
export {
|
|
6
|
-
|
|
6
|
+
p as default
|
|
7
7
|
};
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import o from "./TableFilterPanel.vue2.js";
|
|
2
2
|
/* empty css */
|
|
3
3
|
import t from "../../_virtual/_plugin-vue_export-helper.js";
|
|
4
|
-
const f = /* @__PURE__ */ t(o, [["__scopeId", "data-v-
|
|
4
|
+
const f = /* @__PURE__ */ t(o, [["__scopeId", "data-v-fbd21c0e"]]);
|
|
5
5
|
export {
|
|
6
6
|
f as default
|
|
7
7
|
};
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import o from "./TableGroupRow.vue2.js";
|
|
2
2
|
/* empty css */
|
|
3
3
|
import r from "../../_virtual/_plugin-vue_export-helper.js";
|
|
4
|
-
const
|
|
4
|
+
const e = /* @__PURE__ */ r(o, [["__scopeId", "data-v-d1b3bae0"]]);
|
|
5
5
|
export {
|
|
6
|
-
|
|
6
|
+
e as default
|
|
7
7
|
};
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import o from "./TableHeaderRow.vue2.js";
|
|
2
2
|
/* empty css */
|
|
3
|
-
import
|
|
4
|
-
const
|
|
3
|
+
import r from "../../_virtual/_plugin-vue_export-helper.js";
|
|
4
|
+
const d = /* @__PURE__ */ r(o, [["__scopeId", "data-v-d241d165"]]);
|
|
5
5
|
export {
|
|
6
|
-
|
|
6
|
+
d as default
|
|
7
7
|
};
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import o from "./TableToolbar.vue2.js";
|
|
2
2
|
/* empty css */
|
|
3
|
-
import
|
|
4
|
-
const f = /* @__PURE__ */
|
|
3
|
+
import r from "../../_virtual/_plugin-vue_export-helper.js";
|
|
4
|
+
const f = /* @__PURE__ */ r(o, [["__scopeId", "data-v-47e0f62b"]]);
|
|
5
5
|
export {
|
|
6
6
|
f as default
|
|
7
7
|
};
|