@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.
Files changed (107) hide show
  1. package/dist/components/Dashboard/charts/BarChart.vue.js +2 -2
  2. package/dist/components/Dashboard/charts/BarChart.vue2.js +9 -9
  3. package/dist/components/Dashboard/charts/NumberCard.vue.js +2 -2
  4. package/dist/components/Dashboard/charts/PieChart.vue.js +1 -1
  5. package/dist/components/Dashboard/charts/PieChart.vue2.js +3 -3
  6. package/dist/components/Dashboard/charts/TableChart.vue.js +2 -2
  7. package/dist/components/Dashboard/index.vue.js +2 -2
  8. package/dist/components/base/InfoCard.vue.js +1 -1
  9. package/dist/components/base/InfoCard.vue2.js +40 -40
  10. package/dist/components/base/StatisticCard.vue.js +3 -3
  11. package/dist/components/base/StatusSummary.vue.js +1 -1
  12. package/dist/components/base/StatusSummary.vue2.js +5 -5
  13. package/dist/components/database/DatabaseDetailPresenter.vue.d.ts +41 -0
  14. package/dist/components/database/DatabaseDetailPresenter.vue.js +76 -0
  15. package/dist/components/database/DatabaseDetailPresenter.vue2.js +4 -0
  16. package/dist/components/database/DatabaseDetailWorkspace.vue.d.ts +37 -0
  17. package/dist/components/database/DatabaseDetailWorkspace.vue.js +7 -0
  18. package/dist/components/database/DatabaseDetailWorkspace.vue2.js +103 -0
  19. package/dist/components/database/DatabaseView.vue.d.ts +13 -76
  20. package/dist/components/database/DatabaseView.vue.js +2 -2
  21. package/dist/components/database/DatabaseView.vue2.js +322 -921
  22. package/dist/components/database/DatabaseViewContent.vue.d.ts +74 -0
  23. package/dist/components/database/DatabaseViewContent.vue.js +79 -0
  24. package/dist/components/database/DatabaseViewContent.vue2.js +4 -0
  25. package/dist/components/database/DatabaseViewDetailHost.vue.d.ts +43 -0
  26. package/dist/components/database/DatabaseViewDetailHost.vue.js +59 -0
  27. package/dist/components/database/DatabaseViewDetailHost.vue2.js +4 -0
  28. package/dist/components/database/DatabaseViewShell.vue.d.ts +35 -0
  29. package/dist/components/database/DatabaseViewShell.vue.js +7 -0
  30. package/dist/components/database/DatabaseViewShell.vue2.js +71 -0
  31. package/dist/components/database/DatabaseViewToolbar.vue.d.ts +77 -0
  32. package/dist/components/database/DatabaseViewToolbar.vue.js +62 -0
  33. package/dist/components/database/DatabaseViewToolbar.vue2.js +4 -0
  34. package/dist/components/database/databaseViewUtils.d.ts +91 -0
  35. package/dist/components/database/databaseViewUtils.js +266 -0
  36. package/dist/components/database/index.d.ts +1 -1
  37. package/dist/components/kanban/KanbanColumn.vue.d.ts +2 -2
  38. package/dist/components/layout/AppLayout.vue.js +1 -1
  39. package/dist/components/layout/Navbar.vue.js +1 -1
  40. package/dist/components/layout/Sidebar.vue.js +2 -2
  41. package/dist/components/layout/StatusBar.vue.js +2 -2
  42. package/dist/components/overlay/Dialog.vue.d.ts +1 -1
  43. package/dist/components/table/ColumnHeaderMenu.vue.js +3 -3
  44. package/dist/components/table/DataTable.vue.d.ts +6 -17
  45. package/dist/components/table/DataTable.vue.js +2 -2
  46. package/dist/components/table/DataTable.vue2.js +781 -872
  47. package/dist/components/table/DataTableDesktopFixedRegion.vue.d.ts +56 -0
  48. package/dist/components/table/DataTableDesktopFixedRegion.vue.js +7 -0
  49. package/dist/components/table/DataTableDesktopFixedRegion.vue2.js +67 -0
  50. package/dist/components/table/DataTableDesktopFrame.vue.d.ts +127 -0
  51. package/dist/components/table/DataTableDesktopFrame.vue.js +7 -0
  52. package/dist/components/table/DataTableDesktopFrame.vue2.js +196 -0
  53. package/dist/components/table/DataTableDesktopScrollRegion.vue.d.ts +55 -0
  54. package/dist/components/table/DataTableDesktopScrollRegion.vue.js +7 -0
  55. package/dist/components/table/DataTableDesktopScrollRegion.vue2.js +66 -0
  56. package/dist/components/table/DataTableDesktopStandardRegion.vue.d.ts +54 -0
  57. package/dist/components/table/DataTableDesktopStandardRegion.vue.js +7 -0
  58. package/dist/components/table/DataTableDesktopStandardRegion.vue2.js +65 -0
  59. package/dist/components/table/DataTableDraftToolbar.vue.d.ts +11 -0
  60. package/dist/components/table/DataTableDraftToolbar.vue.js +7 -0
  61. package/dist/components/table/DataTableDraftToolbar.vue2.js +25 -0
  62. package/dist/components/table/DataTableMobilePanel.vue.d.ts +79 -0
  63. package/dist/components/table/DataTableMobilePanel.vue.js +60 -0
  64. package/dist/components/table/DataTableMobilePanel.vue2.js +4 -0
  65. package/dist/components/table/DataTableSelectionBar.vue.d.ts +11 -0
  66. package/dist/components/table/DataTableSelectionBar.vue.js +7 -0
  67. package/dist/components/table/DataTableSelectionBar.vue2.js +33 -0
  68. package/dist/components/table/DetailSheet.vue.js +1 -1
  69. package/dist/components/table/DetailSheet.vue2.js +160 -187
  70. package/dist/components/table/FieldTypePicker.vue.js +3 -3
  71. package/dist/components/table/MobileListView.vue.js +1 -1
  72. package/dist/components/table/TableColumnManager.vue.js +3 -3
  73. package/dist/components/table/TableDataRow.vue.js +4 -4
  74. package/dist/components/table/TableFilterPanel.vue.js +1 -1
  75. package/dist/components/table/TableGroupRow.vue.js +2 -2
  76. package/dist/components/table/TableHeaderRow.vue.js +3 -3
  77. package/dist/components/table/TableToolbar.vue.js +2 -2
  78. package/dist/components/table/TableToolbar.vue2.js +126 -138
  79. package/dist/components/table/dataTableUtils.d.ts +26 -0
  80. package/dist/components/table/dataTableUtils.js +60 -0
  81. package/dist/composables/databaseDetailWorkspaceUtils.d.ts +59 -0
  82. package/dist/composables/databaseDetailWorkspaceUtils.js +160 -0
  83. package/dist/composables/index.d.ts +5 -0
  84. package/dist/composables/useDataTableDetailSheet.d.ts +47 -0
  85. package/dist/composables/useDataTableDetailSheet.js +58 -0
  86. package/dist/composables/useDataTableLayout.d.ts +16 -0
  87. package/dist/composables/useDataTableLayout.js +38 -0
  88. package/dist/composables/useDataTableSelection.d.ts +41 -0
  89. package/dist/composables/useDataTableSelection.js +73 -0
  90. package/dist/composables/useDatabaseDetailWorkspace.d.ts +67 -0
  91. package/dist/composables/useDatabaseDetailWorkspace.js +150 -0
  92. package/dist/composables/useDatabaseView.d.ts +3 -137
  93. package/dist/composables/useDatabaseWorkspace.d.ts +31 -0
  94. package/dist/composables/useDatabaseWorkspace.js +89 -0
  95. package/dist/composables/useTableToolbarPanels.d.ts +19 -0
  96. package/dist/composables/useTableToolbarPanels.js +53 -0
  97. package/dist/contracts/database.d.ts +252 -0
  98. package/dist/index.d.ts +6 -0
  99. package/dist/index.js +261 -248
  100. package/dist/plugin.d.ts +2 -0
  101. package/dist/plugin.js +10 -261
  102. package/dist/registry/plugin-components.d.ts +291 -0
  103. package/dist/registry/plugin-components.js +114 -0
  104. package/dist/style.css +1 -1
  105. package/dist/types/data-table.d.ts +27 -0
  106. package/dist/types/data-table.js +29 -0
  107. package/package.json +1 -1
@@ -1,22 +1,13 @@
1
- import { defineComponent as H, ref as N, computed as h, openBlock as o, createBlock as C, Teleport as E, createVNode as j, Transition as z, withCtx as O, createElementBlock as a, normalizeClass as v, createElementVNode as e, Fragment as y, renderList as k, toDisplayString as _, createCommentVNode as m } from "vue";
2
- import x from "./FieldCell.vue.js";
3
- import { useMarkdown as R } from "../../composables/useMarkdown.js";
4
- const q = { class: "of-detail-sheet__properties" }, A = { class: "of-detail-sheet__label" }, G = { class: "of-detail-sheet__cell" }, I = {
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
- }, J = {
7
+ }, W = {
8
8
  key: 0,
9
9
  class: "of-detail-sheet__content"
10
- }, Q = { class: "of-detail-sheet__content-label" }, U = ["innerHTML"], W = { class: "of-detail-sheet__footer" }, X = ["disabled"], Y = {
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(n, { emit: L }) {
33
- const i = n, r = L, { renderMarkdown: S } = R({ showCopyButton: !0 }), d = N({}), g = h(() => Object.keys(d.value).length > 0), p = h(() => i.embedded || i.visible), V = h(() => new Set(i.contentFields ?? []));
34
- function w(s) {
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 (V.value.has(s.key)) return !0;
37
- const l = (t = i.fieldDefs) == null ? void 0 : t.find((f) => f.id === s.key);
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 D = h(() => i.columns.filter((s) => !w(s))), b = h(() => i.columns.filter((s) => w(s)));
41
- function B(s) {
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 = i.fieldDefs) == null ? void 0 : l.find((t) => t.id === s)) ?? {
44
- id: s,
93
+ return ((l = a.fieldDefs) == null ? void 0 : l.find((t) => t.id === e)) ?? {
94
+ id: e,
45
95
  type: "text",
46
- label: s
96
+ label: e
47
97
  };
48
98
  }
49
- function u(s) {
50
- return s.key in d.value ? d.value[s.key] : i.row[s.key];
99
+ function h(e) {
100
+ return e.key in o.value ? o.value[e.key] : a.row[e.key];
51
101
  }
52
- function F(s) {
53
- const l = u(s);
54
- return typeof l != "string" || !l ? "" : S(l);
102
+ function L(e) {
103
+ const l = h(e);
104
+ return typeof l != "string" || !l ? "" : D(l);
55
105
  }
56
- function M(s, l, t) {
57
- d.value = { ...d.value, [l]: t }, r("cell-edit", { rowId: s, fieldId: l, value: t });
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 P() {
60
- r("save", { rowId: i.row.id, fields: { ...d.value } }), d.value = {}, r("close");
109
+ function E() {
110
+ f("save", { rowId: a.row.id, fields: { ...o.value } }), o.value = {}, f("close");
61
111
  }
62
- function c() {
63
- d.value = {}, r("close");
112
+ function _() {
113
+ o.value = {}, f("close");
64
114
  }
65
- function T() {
66
- r("delete", i.row.id), r("close");
115
+ function H() {
116
+ f("delete", a.row.id), f("close");
67
117
  }
68
- return (s, l) => n.embedded ? p.value ? (o(), a("div", Y, [
69
- e("div", {
70
- class: v(["of-detail-sheet", { "of-detail-sheet--full-page": n.fullPage }])
71
- }, [
72
- e("div", { class: "of-detail-sheet__header" }, [
73
- e("button", {
74
- class: "of-detail-sheet__close",
75
- onClick: c
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
- e("div", Z, [
84
- (o(!0), a(y, null, k(D.value, (t) => {
85
- var f;
86
- return o(), a("div", {
87
- key: t.key,
88
- class: "of-detail-sheet__field"
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
- b.value.length > 0 ? (o(), a("div", te, [
105
- (o(!0), a(y, null, k(b.value, (t) => (o(), a("div", {
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
- e("button", {
145
- type: "button",
146
- class: "of-detail-sheet-overlay__hitarea",
147
- "aria-label": "关闭详情",
148
- onClick: c
149
- }),
150
- e("div", {
151
- class: v(["of-detail-sheet", { "of-detail-sheet--full-page": n.fullPage }])
152
- }, [
153
- e("div", { class: "of-detail-sheet__header" }, [
154
- e("button", {
155
- class: "of-detail-sheet__close",
156
- onClick: c
157
- }, "✕"),
158
- l[0] || (l[0] = e("h3", { class: "of-detail-sheet__title" }, "记录详情", -1)),
159
- l[1] || (l[1] = e("div", { class: "of-detail-sheet__header-spacer" }, null, -1))
160
- ]),
161
- e("div", {
162
- class: v(["of-detail-sheet__body", { "of-detail-sheet__body--full-page": n.fullPage }])
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
- e("div", q, [
165
- (o(!0), a(y, null, k(D.value, (t) => {
166
- var f;
167
- return o(), a("div", {
168
- key: t.key,
169
- class: "of-detail-sheet__field"
170
- }, [
171
- e("span", A, _(t.label), 1),
172
- e("div", G, [
173
- (f = n.fieldDefs) != null && f.length ? (o(), C(x, {
174
- key: 0,
175
- "row-id": n.row.id,
176
- field: B(t.key),
177
- value: u(t),
178
- readonly: n.readonly,
179
- onCommit: M
180
- }, null, 8, ["row-id", "field", "value", "readonly"])) : (o(), a("span", I, _(u(t) ?? "—"), 1))
181
- ])
182
- ]);
183
- }), 128))
184
- ]),
185
- b.value.length > 0 ? (o(), a("div", J, [
186
- (o(!0), a(y, null, k(b.value, (t) => (o(), a("div", {
187
- key: t.key,
188
- class: "of-detail-sheet__content-block"
189
- }, [
190
- e("span", Q, _(t.label), 1),
191
- e("div", {
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
- fe as default
196
+ le as default
224
197
  };
@@ -1,7 +1,7 @@
1
1
  import o from "./FieldTypePicker.vue2.js";
2
2
  /* empty css */
3
- import e from "../../_virtual/_plugin-vue_export-helper.js";
4
- const c = /* @__PURE__ */ e(o, [["__scopeId", "data-v-e50c5383"]]);
3
+ import r from "../../_virtual/_plugin-vue_export-helper.js";
4
+ const a = /* @__PURE__ */ r(o, [["__scopeId", "data-v-68d838a3"]]);
5
5
  export {
6
- c as default
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-e5391fd2"]]);
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 e from "../../_virtual/_plugin-vue_export-helper.js";
4
- const m = /* @__PURE__ */ e(o, [["__scopeId", "data-v-8d96e6ee"]]);
3
+ import a from "../../_virtual/_plugin-vue_export-helper.js";
4
+ const e = /* @__PURE__ */ a(o, [["__scopeId", "data-v-0801bb6b"]]);
5
5
  export {
6
- m as default
6
+ e as default
7
7
  };
@@ -1,7 +1,7 @@
1
- import o from "./TableDataRow.vue2.js";
1
+ import a from "./TableDataRow.vue2.js";
2
2
  /* empty css */
3
- import a from "../../_virtual/_plugin-vue_export-helper.js";
4
- const m = /* @__PURE__ */ a(o, [["__scopeId", "data-v-c81e54a5"]]);
3
+ import o from "../../_virtual/_plugin-vue_export-helper.js";
4
+ const p = /* @__PURE__ */ o(a, [["__scopeId", "data-v-617a05a1"]]);
5
5
  export {
6
- m as default
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-66f74376"]]);
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 c = /* @__PURE__ */ r(o, [["__scopeId", "data-v-2d6dc6c9"]]);
4
+ const e = /* @__PURE__ */ r(o, [["__scopeId", "data-v-d1b3bae0"]]);
5
5
  export {
6
- c as default
6
+ e as default
7
7
  };
@@ -1,7 +1,7 @@
1
1
  import o from "./TableHeaderRow.vue2.js";
2
2
  /* empty css */
3
- import e from "../../_virtual/_plugin-vue_export-helper.js";
4
- const m = /* @__PURE__ */ e(o, [["__scopeId", "data-v-67029c0e"]]);
3
+ import r from "../../_virtual/_plugin-vue_export-helper.js";
4
+ const d = /* @__PURE__ */ r(o, [["__scopeId", "data-v-d241d165"]]);
5
5
  export {
6
- m as default
6
+ d as default
7
7
  };
@@ -1,7 +1,7 @@
1
1
  import o from "./TableToolbar.vue2.js";
2
2
  /* empty css */
3
- import a from "../../_virtual/_plugin-vue_export-helper.js";
4
- const f = /* @__PURE__ */ a(o, [["__scopeId", "data-v-8aa06fe0"]]);
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
  };