sprintify-ui 0.6.55 → 0.6.56
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/sprintify-ui.es.js
CHANGED
|
@@ -44335,31 +44335,29 @@ const v5 = { class: "p-0 border-b border-slate-200" }, y5 = /* @__PURE__ */ be({
|
|
|
44335
44335
|
class: { type: [Array, String, null, Number, Boolean], default: void 0 }
|
|
44336
44336
|
},
|
|
44337
44337
|
setup(n) {
|
|
44338
|
-
const t = n, e = pt("BaseTable")
|
|
44339
|
-
if (!pt("
|
|
44340
|
-
throw new Error("BaseTableCell must be used within a BaseTableRow.");
|
|
44341
|
-
if (!r)
|
|
44338
|
+
const t = n, e = pt("BaseTable");
|
|
44339
|
+
if (!pt("BaseTableHead", void 0))
|
|
44342
44340
|
throw new Error("BaseTableCell must be used within a BaseTableHead.");
|
|
44343
|
-
const
|
|
44344
|
-
var
|
|
44341
|
+
const i = L(() => {
|
|
44342
|
+
var a, l;
|
|
44345
44343
|
return {
|
|
44346
|
-
spacing: (
|
|
44347
|
-
flush: (
|
|
44344
|
+
spacing: (a = e == null ? void 0 : e.value) == null ? void 0 : a.spacing,
|
|
44345
|
+
flush: (l = e == null ? void 0 : e.value) == null ? void 0 : l.flush,
|
|
44348
44346
|
head: !0
|
|
44349
44347
|
};
|
|
44350
|
-
}),
|
|
44351
|
-
const
|
|
44348
|
+
}), o = L(() => {
|
|
44349
|
+
const a = Ab(i.value);
|
|
44352
44350
|
return kt(
|
|
44353
44351
|
"text-slate-500 font-normal",
|
|
44354
|
-
|
|
44352
|
+
a,
|
|
44355
44353
|
t.class
|
|
44356
44354
|
);
|
|
44357
44355
|
});
|
|
44358
|
-
return (
|
|
44356
|
+
return (a, l) => (B(), K("th", w5, [
|
|
44359
44357
|
j("div", {
|
|
44360
|
-
class: de(C(
|
|
44358
|
+
class: de(C(o))
|
|
44361
44359
|
}, [
|
|
44362
|
-
Ne(
|
|
44360
|
+
Ne(a.$slots, "default")
|
|
44363
44361
|
], 2)
|
|
44364
44362
|
]));
|
|
44365
44363
|
}
|
package/package.json
CHANGED
|
@@ -14,11 +14,6 @@ import { ComputedRef } from 'vue';
|
|
|
14
14
|
|
|
15
15
|
const baseTable = inject('BaseTable') as ComputedRef<TableProps> | undefined;
|
|
16
16
|
const baseTableHead = inject('BaseTableHead', undefined);
|
|
17
|
-
const baseTableRow = inject('BaseTableRow');
|
|
18
|
-
|
|
19
|
-
if (!baseTableRow) {
|
|
20
|
-
throw new Error('BaseTableCell must be used within a BaseTableRow.');
|
|
21
|
-
}
|
|
22
17
|
|
|
23
18
|
if (!baseTableHead) {
|
|
24
19
|
throw new Error('BaseTableCell must be used within a BaseTableHead.');
|