@ithinkdt/ui 4.0.7 → 4.0.8
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/{DataTable-D6hPSWvx.js → DataTable-DEb9CRCZ.js} +6 -5
- package/dist/{assets-_Fpf0gbI.js → assets-bJgPKDh1.js} +3 -1
- package/dist/components.js +180 -168
- package/dist/composables.js +2 -0
- package/dist/{directives-DXNnV4xc.js → directives-pwYPe_53.js} +11 -16
- package/dist/directives.js +1 -1
- package/dist/index.js +143 -130
- package/dist/page.js +184 -183
- package/dist/{use-i18n-Cmb7Xx7d.js → use-i18n-D1TTDOML.js} +3 -1
- package/dist/use-style.js +3 -1
- package/esm/page.d.ts +2 -2
- package/package.json +10 -10
- package/unocss-preset.js +1 -1
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
import e, { c as t, cB as n, cE as r, cM as i, useClsPrefix as a } from "./use-style.js";
|
|
2
|
-
import { i as o } from "./directives-
|
|
3
|
-
import { l as s } from "./assets-
|
|
2
|
+
import { i as o } from "./directives-pwYPe_53.js";
|
|
3
|
+
import { l as s } from "./assets-bJgPKDh1.js";
|
|
4
4
|
import { computed as c, createVNode as l, defineComponent as u, inject as d, isVNode as f, ref as p, shallowRef as m, toValue as h, useTemplateRef as g, watch as _, withDirectives as v } from "vue";
|
|
5
5
|
import { toReactive as y, until as b } from "@vueuse/core";
|
|
6
6
|
import { NButton as x, NDataTable as S, NFlex as C, NIcon as w, NTooltip as T, dataTableProps as E } from "ithinkdt-ui";
|
|
7
7
|
import { PAGE_INJECTION as D } from "@ithinkdt/page";
|
|
8
|
+
//#region src/components/DataTable.jsx
|
|
8
9
|
function O(e) {
|
|
9
10
|
return typeof e == "function" || Object.prototype.toString.call(e) === "[object Object]" && !f(e);
|
|
10
11
|
}
|
|
@@ -62,7 +63,7 @@ function k(e, t) {
|
|
|
62
63
|
return n.key === "$actions" && (n.cellProps ??= () => ({ style: { padding: "0 2px" } })), n;
|
|
63
64
|
}).filter((e) => e?.hidden !== !0);
|
|
64
65
|
}
|
|
65
|
-
|
|
66
|
+
var A = /* @__PURE__ */ u({
|
|
66
67
|
name: "DataTable",
|
|
67
68
|
props: {
|
|
68
69
|
data: {
|
|
@@ -192,8 +193,7 @@ const A = u({
|
|
|
192
193
|
onUnstableColumnResize: P
|
|
193
194
|
}, O(n) ? n : { default: () => [n] });
|
|
194
195
|
}
|
|
195
|
-
})
|
|
196
|
-
var j = n("datatable", [r("row-highlight", [t("& > td", { backgroundColor: "var(--n-tr-highlight-color, var(--n-merged-border-color)) !important" })]), i("sticky", [
|
|
196
|
+
}), j = /* @__PURE__ */ n("datatable", [r("row-highlight", [t("& > td", { backgroundColor: "var(--n-tr-highlight-color, var(--n-merged-border-color)) !important" })]), i("sticky", [
|
|
197
197
|
t(".n-data-table-base-table-header", {
|
|
198
198
|
position: "sticky",
|
|
199
199
|
top: "-1px",
|
|
@@ -216,4 +216,5 @@ var j = n("datatable", [r("row-highlight", [t("& > td", { backgroundColor: "var(
|
|
|
216
216
|
contentVisibility: "auto"
|
|
217
217
|
})
|
|
218
218
|
])]);
|
|
219
|
+
//#endregion
|
|
219
220
|
export { A as DataTable };
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { createVNode as e, mergeProps as t } from "vue";
|
|
2
|
-
|
|
2
|
+
//#region src/components/assets.jsx
|
|
3
|
+
var n = (n) => e("svg", t({
|
|
3
4
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4
5
|
"xmlns:xlink": "http://www.w3.org/1999/xlink",
|
|
5
6
|
role: "img",
|
|
@@ -182,4 +183,5 @@ const n = (n) => e("svg", t({
|
|
|
182
183
|
fill: "currentColor",
|
|
183
184
|
d: "m6.4 18.308l-.708-.708l5.6-5.6l-5.6-5.6l.708-.708l5.6 5.6l5.6-5.6l.708.708l-5.6 5.6l5.6 5.6l-.708.708l-5.6-5.6z"
|
|
184
185
|
}, null)]);
|
|
186
|
+
//#endregion
|
|
185
187
|
export { o as _, g as a, _ as c, p as d, f, c as g, h, r as i, n as l, a as m, d as n, l as o, s as p, y as r, i as s, v as t, m as u, u as v };
|