tsv2-library 0.2.6 → 0.2.7
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/style.css +1 -1
- package/dist/tsv2-library.es.js +12 -7
- package/package.json +1 -1
- package/src/presets/dialog/index.js +2 -2
package/dist/tsv2-library.es.js
CHANGED
|
@@ -8264,7 +8264,7 @@ const w3 = {
|
|
|
8264
8264
|
class: [
|
|
8265
8265
|
// Font
|
|
8266
8266
|
"!text-header-weak text-xs font-medium tracking-[0.02em]",
|
|
8267
|
-
"pr-1.5 -mr-1.5
|
|
8267
|
+
"pr-1.5 -mr-1.5 pl-1.5 -ml-1.5 pt-1.5 -mt-1.5",
|
|
8268
8268
|
// Layout
|
|
8269
8269
|
"flex flex-col gap-3",
|
|
8270
8270
|
// Shape
|
|
@@ -8283,7 +8283,7 @@ const w3 = {
|
|
|
8283
8283
|
"flex items-center justify-end",
|
|
8284
8284
|
"shrink-0",
|
|
8285
8285
|
"text-right",
|
|
8286
|
-
"gap-1",
|
|
8286
|
+
"gap-1 mt-2",
|
|
8287
8287
|
// Shape
|
|
8288
8288
|
"border-t-0",
|
|
8289
8289
|
"rounded-b-lg",
|
|
@@ -42785,14 +42785,18 @@ const TI = { class: "flex items-center gap-3 w-full" }, FI = {
|
|
|
42785
42785
|
o({
|
|
42786
42786
|
RFID: u.value.device,
|
|
42787
42787
|
QR: c.value.device
|
|
42788
|
-
})
|
|
42788
|
+
}), console.log(
|
|
42789
|
+
"🚀 ~ updateSelectedDevice",
|
|
42790
|
+
u.value,
|
|
42791
|
+
c.value
|
|
42792
|
+
);
|
|
42789
42793
|
}, C = () => {
|
|
42790
42794
|
r("update:visible", !1);
|
|
42791
42795
|
};
|
|
42792
42796
|
return nt(
|
|
42793
42797
|
() => n.visible,
|
|
42794
42798
|
(z) => {
|
|
42795
|
-
z && (b.value = T());
|
|
42799
|
+
z && (b.value = T(), U());
|
|
42796
42800
|
}
|
|
42797
42801
|
), (z, P) => (g(), N(da, {
|
|
42798
42802
|
closable: !y.value,
|
|
@@ -54718,7 +54722,7 @@ const eZ = () => JSON.parse(localStorage.getItem("tableConfig") ?? "{}"), ud = r
|
|
|
54718
54722
|
class: ie([
|
|
54719
54723
|
"flex items-center justify-start gap-2 px-4 py-1.5 text-xs",
|
|
54720
54724
|
"hover:bg-surface-50",
|
|
54721
|
-
"no-underline overflow-hidden cursor-pointer select-none",
|
|
54725
|
+
"!no-underline overflow-hidden cursor-pointer select-none",
|
|
54722
54726
|
{
|
|
54723
54727
|
"pointer-events-none cursor-default": me.disabled
|
|
54724
54728
|
}
|
|
@@ -57546,6 +57550,7 @@ const S1 = "data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTI1IiBoZWlnaHQ9IjEyNSIgdm
|
|
|
57546
57550
|
rows: 10,
|
|
57547
57551
|
search: f.value,
|
|
57548
57552
|
"table-name": n.type + n.tagType,
|
|
57553
|
+
"use-option": !1,
|
|
57549
57554
|
"data-key": "_id",
|
|
57550
57555
|
"data-ts-section": "dialog-select-asset-table",
|
|
57551
57556
|
lazy: "",
|
|
@@ -63328,9 +63333,9 @@ const K0 = /* @__PURE__ */ De({
|
|
|
63328
63333
|
// eslint-disable-next-line eqeqeq
|
|
63329
63334
|
f != null && f.toString().length > (n.maxDigit > 16 ? 16 : n.maxDigit)
|
|
63330
63335
|
), d = () => {
|
|
63331
|
-
u((i.value ?? 0) + 1, "modelValue");
|
|
63336
|
+
u(+(i.value ?? 0) + 1, "modelValue");
|
|
63332
63337
|
}, h = () => {
|
|
63333
|
-
u((i.value ?? 0) - 1, "modelValue");
|
|
63338
|
+
u(+(i.value ?? 0) - 1, "modelValue");
|
|
63334
63339
|
};
|
|
63335
63340
|
return nt(
|
|
63336
63341
|
() => n.value,
|
package/package.json
CHANGED
|
@@ -152,7 +152,7 @@ export default {
|
|
|
152
152
|
// Font
|
|
153
153
|
'!text-header-weak text-xs font-medium tracking-[0.02em]',
|
|
154
154
|
|
|
155
|
-
'pr-1.5 -mr-1.5
|
|
155
|
+
'pr-1.5 -mr-1.5 pl-1.5 -ml-1.5 pt-1.5 -mt-1.5',
|
|
156
156
|
|
|
157
157
|
// Layout
|
|
158
158
|
'flex flex-col gap-3',
|
|
@@ -176,7 +176,7 @@ export default {
|
|
|
176
176
|
'flex items-center justify-end',
|
|
177
177
|
'shrink-0',
|
|
178
178
|
'text-right',
|
|
179
|
-
'gap-1',
|
|
179
|
+
'gap-1 mt-2',
|
|
180
180
|
|
|
181
181
|
// Shape
|
|
182
182
|
'border-t-0',
|