amelia-booking-ui 0.0.472 → 0.0.474
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.
|
@@ -63794,13 +63794,14 @@ const MLe = {
|
|
|
63794
63794
|
enableRowShadow: { type: Boolean, default: !1 },
|
|
63795
63795
|
gapBetweenRows: { default: 4 },
|
|
63796
63796
|
alwaysShowScrollbar: { type: Boolean, default: !1 },
|
|
63797
|
-
groupByFormatter: { type: Function, default: (t) => t }
|
|
63797
|
+
groupByFormatter: { type: Function, default: (t) => t },
|
|
63798
|
+
hoverable: { type: Boolean, default: !0 }
|
|
63798
63799
|
},
|
|
63799
63800
|
emits: ["rowClick", "deleteCheckedRows", "sort"],
|
|
63800
63801
|
setup(t, { expose: e, emit: n }) {
|
|
63801
63802
|
Jn((oe) => ({
|
|
63802
|
-
|
|
63803
|
-
|
|
63803
|
+
v738a5780: I.value,
|
|
63804
|
+
e4acda50: O.value
|
|
63804
63805
|
}));
|
|
63805
63806
|
const l = Me("$t", (oe) => oe), r = t, o = U1(), a = n, s = E([]), i = E(null), c = E(null), u = E([]), h = E([]), m = E(!1), v = E(!1), w = E(/* @__PURE__ */ new Set()), y = E({}), b = E([]), $ = E(!0), x = k({
|
|
63806
63807
|
get: () => b.value.every((oe) => oe.rows.every((me) => me.checked)),
|
|
@@ -64274,7 +64275,13 @@ const MLe = {
|
|
|
64274
64275
|
!r.groupBy || ve(Pe) ? (p(), g("div", aPe, [
|
|
64275
64276
|
(p(!0), g(Ee, null, Ke(Pe.rows, (ie, Re) => (p(), g("div", {
|
|
64276
64277
|
key: Re,
|
|
64277
|
-
class: z(["am-table__body__row", [
|
|
64278
|
+
class: z(["am-table__body__row", [
|
|
64279
|
+
D1(ie, Re),
|
|
64280
|
+
{
|
|
64281
|
+
selected: ie.checked,
|
|
64282
|
+
"am-table__body__row__hoverable": r.hoverable
|
|
64283
|
+
}
|
|
64284
|
+
]]),
|
|
64278
64285
|
onClick: (We) => ee(ie)
|
|
64279
64286
|
}, [
|
|
64280
64287
|
(p(!0), g(Ee, null, Ke(H.value, (We, _1) => (p(), g("div", {
|
|
@@ -12,6 +12,7 @@ interface Props {
|
|
|
12
12
|
gapBetweenRows?: number;
|
|
13
13
|
alwaysShowScrollbar?: boolean;
|
|
14
14
|
groupByFormatter?: (value: string) => string;
|
|
15
|
+
hoverable?: boolean;
|
|
15
16
|
}
|
|
16
17
|
declare function __VLS_template(): {
|
|
17
18
|
attrs: Partial<{}>;
|
|
@@ -46,6 +47,7 @@ declare const __VLS_component: import('vue').DefineComponent<Props, {
|
|
|
46
47
|
gapBetweenRows: number;
|
|
47
48
|
alwaysShowScrollbar: boolean;
|
|
48
49
|
groupByFormatter: (value: string) => string;
|
|
50
|
+
hoverable: boolean;
|
|
49
51
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
50
52
|
hiddenColumns: HTMLDivElement;
|
|
51
53
|
scrollBarRef: unknown;
|