sprintify-ui 0.10.72 → 0.10.73
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
|
@@ -11367,6 +11367,10 @@ const c0 = {
|
|
|
11367
11367
|
max: {
|
|
11368
11368
|
default: 10,
|
|
11369
11369
|
type: Number
|
|
11370
|
+
},
|
|
11371
|
+
tooltip: {
|
|
11372
|
+
default: !1,
|
|
11373
|
+
type: Boolean
|
|
11370
11374
|
}
|
|
11371
11375
|
},
|
|
11372
11376
|
setup(t) {
|
|
@@ -11403,12 +11407,12 @@ const c0 = {
|
|
|
11403
11407
|
B("div", h0, [
|
|
11404
11408
|
Z(kr, {
|
|
11405
11409
|
class: "flex",
|
|
11406
|
-
tooltip:
|
|
11410
|
+
tooltip: t.tooltip,
|
|
11407
11411
|
user: p,
|
|
11408
11412
|
size: t.size,
|
|
11409
11413
|
"show-details": !1,
|
|
11410
11414
|
to: t.to ? t.to(p) : void 0
|
|
11411
|
-
}, null, 8, ["user", "size", "to"])
|
|
11415
|
+
}, null, 8, ["tooltip", "user", "size", "to"])
|
|
11412
11416
|
])
|
|
11413
11417
|
], 4))), 128)),
|
|
11414
11418
|
c(l) ? (b(), z("div", {
|
|
@@ -18,6 +18,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
18
18
|
default: number;
|
|
19
19
|
type: NumberConstructor;
|
|
20
20
|
};
|
|
21
|
+
tooltip: {
|
|
22
|
+
default: boolean;
|
|
23
|
+
type: BooleanConstructor;
|
|
24
|
+
};
|
|
21
25
|
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
22
26
|
users: {
|
|
23
27
|
required: true;
|
|
@@ -35,9 +39,14 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
35
39
|
default: number;
|
|
36
40
|
type: NumberConstructor;
|
|
37
41
|
};
|
|
42
|
+
tooltip: {
|
|
43
|
+
default: boolean;
|
|
44
|
+
type: BooleanConstructor;
|
|
45
|
+
};
|
|
38
46
|
}>> & Readonly<{}>, {
|
|
39
47
|
to: (user: User) => RouteLocationRaw;
|
|
40
48
|
size: string;
|
|
49
|
+
tooltip: boolean;
|
|
41
50
|
max: number;
|
|
42
51
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
43
52
|
export default _default;
|
package/package.json
CHANGED
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
<div class="rounded-full border-[3px] border-white">
|
|
12
12
|
<BaseAvatar
|
|
13
13
|
class="flex"
|
|
14
|
-
tooltip
|
|
14
|
+
:tooltip="tooltip"
|
|
15
15
|
:user="user"
|
|
16
16
|
:size="size"
|
|
17
17
|
:show-details="false"
|
|
@@ -62,6 +62,10 @@ const props = defineProps({
|
|
|
62
62
|
default: 10,
|
|
63
63
|
type: Number,
|
|
64
64
|
},
|
|
65
|
+
tooltip: {
|
|
66
|
+
default: false,
|
|
67
|
+
type: Boolean,
|
|
68
|
+
},
|
|
65
69
|
});
|
|
66
70
|
|
|
67
71
|
const spacing = computed(() => {
|