sprintify-ui 0.12.20 → 0.12.21
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 +1 -1
- package/dist/types/components/BaseAvatarGroup.vue.d.ts +1 -1
- package/dist/types/components/BaseButton.vue.d.ts +1 -1
- package/dist/types/components/BaseTableColumn.vue.d.ts +1 -1
- package/dist/types/components/BaseTableHeader.vue.d.ts +1 -1
- package/package.json +1 -1
- package/src/components/BaseTooltip.vue +1 -1
package/dist/sprintify-ui.es.js
CHANGED
|
@@ -7543,7 +7543,7 @@ const HC = { class: "relative filter drop-shadow-[0_1px_2px_rgba(0,0,0,0.1)]" },
|
|
|
7543
7543
|
}, {
|
|
7544
7544
|
default: X(() => [
|
|
7545
7545
|
de(d.$slots, "default"),
|
|
7546
|
-
n.visible && n.text ? (k(), oe(or, {
|
|
7546
|
+
n.visible && (n.text || d.$slots.tooltip) ? (k(), oe(or, {
|
|
7547
7547
|
key: 0,
|
|
7548
7548
|
to: "body"
|
|
7549
7549
|
}, [
|
|
@@ -46,7 +46,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
46
46
|
}>> & Readonly<{}>, {
|
|
47
47
|
to: (user: AvatarUserInput) => RouteLocationRaw;
|
|
48
48
|
size: string;
|
|
49
|
-
max: number;
|
|
50
49
|
tooltip: boolean;
|
|
50
|
+
max: number;
|
|
51
51
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
52
52
|
export default _default;
|
|
@@ -67,11 +67,11 @@ declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {
|
|
|
67
67
|
icon: string;
|
|
68
68
|
disabled: boolean;
|
|
69
69
|
as: string;
|
|
70
|
+
tooltip: string | null;
|
|
70
71
|
loading: boolean;
|
|
71
72
|
iconPosition: "start" | "end";
|
|
72
73
|
sizeBehavior: SizeBehavior;
|
|
73
74
|
align: "center" | "between";
|
|
74
|
-
tooltip: string | null;
|
|
75
75
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
76
76
|
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
77
77
|
export default _default;
|
|
@@ -204,8 +204,8 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
204
204
|
meta: Record<string, any> | unknown[];
|
|
205
205
|
width: number;
|
|
206
206
|
padding: string;
|
|
207
|
-
align: "left" | "center" | "right";
|
|
208
207
|
tooltip: string;
|
|
208
|
+
align: "left" | "center" | "right";
|
|
209
209
|
field: string;
|
|
210
210
|
headerClass: string | Record<string, any> | unknown[];
|
|
211
211
|
searchable: boolean;
|
|
@@ -20,8 +20,8 @@ declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {}, {}
|
|
|
20
20
|
}>, {
|
|
21
21
|
class: string | false | 0 | 0n | ClassNameValue[] | null;
|
|
22
22
|
style: string | false | import("vue").CSSProperties | StyleValue[] | null;
|
|
23
|
-
align: "left" | "center" | "right";
|
|
24
23
|
tooltip: string;
|
|
24
|
+
align: "left" | "center" | "right";
|
|
25
25
|
colspan: number;
|
|
26
26
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
27
27
|
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
package/package.json
CHANGED