@oneflowui/ui 0.5.4 → 0.5.6
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/breadcrumb/Breadcrumb.vue.js +2 -2
- package/dist/components/breadcrumb/BreadcrumbItem.vue.js +2 -2
- package/dist/components/table/DataTable.vue.d.ts +18 -0
- package/dist/components/table/DataTable.vue.js +1 -1
- package/dist/components/table/DataTable.vue2.js +485 -455
- package/dist/components/table/MobileListView.vue.d.ts +23 -1
- package/dist/components/table/MobileListView.vue.js +1 -1
- package/dist/components/table/MobileListView.vue2.js +48 -39
- package/dist/components/table/TableDataRow.vue.js +1 -1
- package/dist/components/table/TableDataRow.vue2.js +45 -41
- package/dist/components/table/TableGroupRow.vue.js +2 -2
- package/dist/components/table/TableGroupRow.vue2.js +37 -31
- package/dist/components/table/TableHeaderRow.vue.js +1 -1
- package/dist/components/table/TableHeaderRow.vue2.js +31 -24
- package/dist/style.css +1 -1
- package/package.json +1 -1
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import o from "./Breadcrumb.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-1a7571e0"]]);
|
|
5
5
|
export {
|
|
6
|
-
|
|
6
|
+
e as default
|
|
7
7
|
};
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import o from "./BreadcrumbItem.vue2.js";
|
|
2
2
|
/* empty css */
|
|
3
3
|
import r from "../../_virtual/_plugin-vue_export-helper.js";
|
|
4
|
-
const
|
|
4
|
+
const a = /* @__PURE__ */ r(o, [["__scopeId", "data-v-cfd104cd"]]);
|
|
5
5
|
export {
|
|
6
|
-
|
|
6
|
+
a as default
|
|
7
7
|
};
|
|
@@ -91,6 +91,12 @@ declare const _default: <T extends {
|
|
|
91
91
|
expose(exposed: import('vue').ShallowUnwrapRef<{}>): void;
|
|
92
92
|
attrs: any;
|
|
93
93
|
slots: {
|
|
94
|
+
cell?(_: {
|
|
95
|
+
row: Record<string, unknown> & {
|
|
96
|
+
id: string;
|
|
97
|
+
};
|
|
98
|
+
col: TableColumn;
|
|
99
|
+
}): any;
|
|
94
100
|
cell?(_: {
|
|
95
101
|
row: T & {
|
|
96
102
|
__type: "data-row";
|
|
@@ -115,6 +121,18 @@ declare const _default: <T extends {
|
|
|
115
121
|
};
|
|
116
122
|
col: TableColumn;
|
|
117
123
|
}): any;
|
|
124
|
+
cell?(_: {
|
|
125
|
+
row: Record<string, unknown> & {
|
|
126
|
+
id: string;
|
|
127
|
+
};
|
|
128
|
+
col: TableColumn;
|
|
129
|
+
}): any;
|
|
130
|
+
cell?(_: {
|
|
131
|
+
row: Record<string, unknown> & {
|
|
132
|
+
id: string;
|
|
133
|
+
};
|
|
134
|
+
col: TableColumn;
|
|
135
|
+
}): any;
|
|
118
136
|
};
|
|
119
137
|
emit: ((evt: "paste", payload: {
|
|
120
138
|
startRowId: string;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import o from "./DataTable.vue2.js";
|
|
2
2
|
/* empty css */
|
|
3
3
|
import t from "../../_virtual/_plugin-vue_export-helper.js";
|
|
4
|
-
const m = /* @__PURE__ */ t(o, [["__scopeId", "data-v-
|
|
4
|
+
const m = /* @__PURE__ */ t(o, [["__scopeId", "data-v-9dec5488"]]);
|
|
5
5
|
export {
|
|
6
6
|
m as default
|
|
7
7
|
};
|