@quidgest/ui 0.13.0 → 0.13.1
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/ui.css +6 -2
- package/dist/ui.esm.js +269 -263
- package/dist/ui.js +4 -4
- package/dist/ui.min.css +1 -1
- package/dist/ui.min.js +47 -47
- package/dist/ui.scss +7 -3
- package/esm/components/QDialog/QDialog.d.ts +8 -4
- package/esm/components/QDialog/QDialog.d.ts.map +1 -1
- package/esm/components/QDialog/QDialog.vue.js +28 -28
- package/esm/components/QSelect/QSelect.d.ts.map +1 -1
- package/esm/components/QSelect/QSelect.vue.js +34 -34
- package/esm/components/QTooltip/QTooltip.d.ts +15 -0
- package/esm/components/QTooltip/QTooltip.d.ts.map +1 -1
- package/esm/components/QTooltip/QTooltip.vue.js +44 -27
- package/esm/components/QTooltip/index.d.ts +20 -0
- package/esm/components/QTooltip/index.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { defineComponent as J, mergeModels as
|
|
2
|
-
import { QButton as
|
|
1
|
+
import { defineComponent as J, mergeModels as R, useModel as Y, ref as m, computed as k, watch as Z, nextTick as ee, openBlock as t, createElementBlock as p, Fragment as D, createVNode as v, unref as n, normalizeClass as le, withModifiers as F, createSlots as oe, withCtx as s, renderSlot as u, createBlock as g, normalizeProps as C, guardReactiveProps as M, createCommentVNode as h, toDisplayString as O, createTextVNode as ae, mergeProps as te, createElementVNode as ne } from "vue";
|
|
2
|
+
import { QButton as U } from "../QButton/index.js";
|
|
3
3
|
import { QField as ie } from "../QField/index.js";
|
|
4
4
|
import { QIcon as S } from "../QIcon/index.js";
|
|
5
5
|
import { QList as se } from "../QList/index.js";
|
|
@@ -25,7 +25,7 @@ const ue = {
|
|
|
25
25
|
}
|
|
26
26
|
}, Ve = /* @__PURE__ */ J({
|
|
27
27
|
__name: "QSelect",
|
|
28
|
-
props: /* @__PURE__ */
|
|
28
|
+
props: /* @__PURE__ */ R({
|
|
29
29
|
id: { default: void 0 },
|
|
30
30
|
label: { default: "" },
|
|
31
31
|
clearable: { type: Boolean },
|
|
@@ -48,14 +48,14 @@ const ue = {
|
|
|
48
48
|
},
|
|
49
49
|
modelModifiers: {}
|
|
50
50
|
}),
|
|
51
|
-
emits: /* @__PURE__ */
|
|
52
|
-
setup(x, { emit:
|
|
53
|
-
const l = x, y =
|
|
51
|
+
emits: /* @__PURE__ */ R(["before-show", "before-hide", "show", "hide"], ["update:modelValue"]),
|
|
52
|
+
setup(x, { emit: A }) {
|
|
53
|
+
const l = x, y = A, c = Y(x, "modelValue"), a = m(!1), w = m(""), b = m(null), _ = m(null), V = m(null), P = k(() => d.value === void 0), d = k(
|
|
54
54
|
() => {
|
|
55
55
|
var e;
|
|
56
56
|
return (e = l.items) == null ? void 0 : e.find((o) => o[l.itemValue] === c.value);
|
|
57
57
|
}
|
|
58
|
-
),
|
|
58
|
+
), K = k(
|
|
59
59
|
() => d.value ? d.value[l.itemLabel] : ""
|
|
60
60
|
), q = k(
|
|
61
61
|
() => l.clearable && !l.readonly && !l.disabled && !l.loading
|
|
@@ -64,20 +64,20 @@ const ue = {
|
|
|
64
64
|
c.value = e, L();
|
|
65
65
|
}
|
|
66
66
|
function E() {
|
|
67
|
-
q.value && B(l.emptyValue);
|
|
67
|
+
q.value && (B(l.emptyValue), I());
|
|
68
68
|
}
|
|
69
|
-
function
|
|
69
|
+
function H(e) {
|
|
70
70
|
var o, r, f;
|
|
71
71
|
!((o = V.value) != null && o.contains(e.relatedTarget)) && !((f = (r = b.value) == null ? void 0 : r.fieldRef) != null && f.contains(e.relatedTarget)) && L();
|
|
72
72
|
}
|
|
73
|
-
function
|
|
73
|
+
function W() {
|
|
74
74
|
a.value || (y("before-show"), a.value = !0);
|
|
75
75
|
}
|
|
76
76
|
function L() {
|
|
77
77
|
a.value && (y("before-hide"), a.value = !1);
|
|
78
78
|
}
|
|
79
79
|
function T() {
|
|
80
|
-
l.readonly || l.disabled || (a.value ? L() :
|
|
80
|
+
l.readonly || l.disabled || (a.value ? L() : W());
|
|
81
81
|
}
|
|
82
82
|
let $;
|
|
83
83
|
function z(e) {
|
|
@@ -95,18 +95,18 @@ const ue = {
|
|
|
95
95
|
}, 500);
|
|
96
96
|
}
|
|
97
97
|
}
|
|
98
|
-
function W() {
|
|
99
|
-
var e;
|
|
100
|
-
l.loading ? (e = V.value) == null || e.focus() : I(), y("show");
|
|
101
|
-
}
|
|
102
98
|
function X() {
|
|
103
|
-
|
|
99
|
+
var e;
|
|
100
|
+
l.loading ? (e = V.value) == null || e.focus() : N(), y("show");
|
|
104
101
|
}
|
|
105
102
|
function j() {
|
|
103
|
+
I(), y("hide");
|
|
104
|
+
}
|
|
105
|
+
function I() {
|
|
106
106
|
var e, o;
|
|
107
107
|
(o = (e = b.value) == null ? void 0 : e.fieldRef) == null || o.focus();
|
|
108
108
|
}
|
|
109
|
-
function
|
|
109
|
+
function N() {
|
|
110
110
|
var e;
|
|
111
111
|
(e = _.value) == null || e.$el.focus();
|
|
112
112
|
}
|
|
@@ -117,12 +117,12 @@ const ue = {
|
|
|
117
117
|
return Z(
|
|
118
118
|
() => l.loading,
|
|
119
119
|
(e) => {
|
|
120
|
-
!e && a.value && ee(
|
|
120
|
+
!e && a.value && ee(N);
|
|
121
121
|
}
|
|
122
122
|
), (e, o) => {
|
|
123
123
|
var r, f;
|
|
124
124
|
return t(), p(
|
|
125
|
-
|
|
125
|
+
D,
|
|
126
126
|
null,
|
|
127
127
|
[
|
|
128
128
|
v(n(ie), {
|
|
@@ -149,11 +149,11 @@ const ue = {
|
|
|
149
149
|
"aria-haspopup": "listbox",
|
|
150
150
|
size: l.size,
|
|
151
151
|
onClick: T,
|
|
152
|
-
onKeydown:
|
|
152
|
+
onKeydown: F(z, ["stop"])
|
|
153
153
|
}, oe({
|
|
154
154
|
append: s(() => [
|
|
155
155
|
u(e.$slots, "append"),
|
|
156
|
-
q.value && c.value ? (t(), g(n(
|
|
156
|
+
q.value && c.value ? (t(), g(n(U), {
|
|
157
157
|
key: 0,
|
|
158
158
|
class: "q-select__clear",
|
|
159
159
|
"b-style": "plain",
|
|
@@ -164,7 +164,7 @@ const ue = {
|
|
|
164
164
|
default: s(() => [
|
|
165
165
|
v(
|
|
166
166
|
n(S),
|
|
167
|
-
C(
|
|
167
|
+
C(M(l.icons.clear)),
|
|
168
168
|
null,
|
|
169
169
|
16
|
|
170
170
|
/* FULL_PROPS */
|
|
@@ -173,7 +173,7 @@ const ue = {
|
|
|
173
173
|
_: 1
|
|
174
174
|
/* STABLE */
|
|
175
175
|
})) : h("v-if", !0),
|
|
176
|
-
l.readonly ? h("v-if", !0) : (t(), g(n(
|
|
176
|
+
l.readonly ? h("v-if", !0) : (t(), g(n(U), {
|
|
177
177
|
key: 1,
|
|
178
178
|
class: "q-select__chevron",
|
|
179
179
|
"b-style": "plain",
|
|
@@ -185,7 +185,7 @@ const ue = {
|
|
|
185
185
|
default: s(() => [
|
|
186
186
|
v(
|
|
187
187
|
n(S),
|
|
188
|
-
C(
|
|
188
|
+
C(M(l.icons.chevron)),
|
|
189
189
|
null,
|
|
190
190
|
16
|
|
191
191
|
/* FULL_PROPS */
|
|
@@ -196,13 +196,13 @@ const ue = {
|
|
|
196
196
|
}, 8, ["disabled"]))
|
|
197
197
|
]),
|
|
198
198
|
default: s(() => [
|
|
199
|
-
|
|
199
|
+
P.value ? (t(), p("span", ce, [
|
|
200
200
|
!l.readonly && !l.disabled ? (t(), p(
|
|
201
|
-
|
|
201
|
+
D,
|
|
202
202
|
{ key: 0 },
|
|
203
203
|
[
|
|
204
204
|
ae(
|
|
205
|
-
|
|
205
|
+
O(e.texts.placeholder),
|
|
206
206
|
1
|
|
207
207
|
/* TEXT */
|
|
208
208
|
)
|
|
@@ -213,7 +213,7 @@ const ue = {
|
|
|
213
213
|
])) : (t(), p(
|
|
214
214
|
"span",
|
|
215
215
|
ue,
|
|
216
|
-
|
|
216
|
+
O(K.value),
|
|
217
217
|
1
|
|
218
218
|
/* TEXT */
|
|
219
219
|
))
|
|
@@ -224,12 +224,12 @@ const ue = {
|
|
|
224
224
|
(r = d.value) != null && r.icon || e.$slots.prepend ? {
|
|
225
225
|
name: "prepend",
|
|
226
226
|
fn: s(() => {
|
|
227
|
-
var i,
|
|
227
|
+
var i, Q;
|
|
228
228
|
return [
|
|
229
229
|
u(e.$slots, "prepend"),
|
|
230
230
|
(i = d.value) != null && i.icon ? (t(), g(
|
|
231
231
|
n(S),
|
|
232
|
-
C(te({ key: 0 }, (
|
|
232
|
+
C(te({ key: 0 }, (Q = d.value) == null ? void 0 : Q.icon)),
|
|
233
233
|
null,
|
|
234
234
|
16
|
|
235
235
|
/* FULL_PROPS */
|
|
@@ -256,8 +256,8 @@ const ue = {
|
|
|
256
256
|
"scroll-lock": "",
|
|
257
257
|
anchor: (f = b.value) == null ? void 0 : f.$el,
|
|
258
258
|
offset: 2,
|
|
259
|
-
onEnter:
|
|
260
|
-
onLeave:
|
|
259
|
+
onEnter: X,
|
|
260
|
+
onLeave: j
|
|
261
261
|
}, {
|
|
262
262
|
default: s(() => [
|
|
263
263
|
ne("div", {
|
|
@@ -267,8 +267,8 @@ const ue = {
|
|
|
267
267
|
"data-key": l.id,
|
|
268
268
|
class: "q-select__body",
|
|
269
269
|
tabindex: "-1",
|
|
270
|
-
onFocusout:
|
|
271
|
-
onKeydown:
|
|
270
|
+
onFocusout: H,
|
|
271
|
+
onKeydown: F(z, ["stop"])
|
|
272
272
|
}, [
|
|
273
273
|
u(e.$slots, "body.prepend"),
|
|
274
274
|
l.loading ? (t(), p("div", me, [
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { Appearance, Placement, Trigger } from '../../composables/overlay';
|
|
2
2
|
import { Selector } from '../../utils/getElement';
|
|
3
|
+
import { Icon } from '../QIcon';
|
|
3
4
|
|
|
4
5
|
export type QTooltipProps = {
|
|
5
6
|
/**
|
|
@@ -50,6 +51,10 @@ export type QTooltipProps = {
|
|
|
50
51
|
* The text of the tooltip.
|
|
51
52
|
*/
|
|
52
53
|
text: string;
|
|
54
|
+
/**
|
|
55
|
+
* The icon of the tooltip.
|
|
56
|
+
*/
|
|
57
|
+
icon?: Icon;
|
|
53
58
|
/**
|
|
54
59
|
* The method to trigger the overlay.
|
|
55
60
|
*/
|
|
@@ -80,6 +85,10 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
|
|
80
85
|
disabled: {
|
|
81
86
|
type: import('vue').PropType<boolean>;
|
|
82
87
|
};
|
|
88
|
+
icon: {
|
|
89
|
+
type: import('vue').PropType<Icon>;
|
|
90
|
+
default: undefined;
|
|
91
|
+
};
|
|
83
92
|
id: {
|
|
84
93
|
type: import('vue').PropType<string>;
|
|
85
94
|
default: undefined;
|
|
@@ -132,6 +141,10 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
|
|
132
141
|
disabled: {
|
|
133
142
|
type: import('vue').PropType<boolean>;
|
|
134
143
|
};
|
|
144
|
+
icon: {
|
|
145
|
+
type: import('vue').PropType<Icon>;
|
|
146
|
+
default: undefined;
|
|
147
|
+
};
|
|
135
148
|
id: {
|
|
136
149
|
type: import('vue').PropType<string>;
|
|
137
150
|
default: undefined;
|
|
@@ -166,6 +179,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
|
|
166
179
|
}>>, {
|
|
167
180
|
class: string | unknown[];
|
|
168
181
|
html: boolean;
|
|
182
|
+
icon: Icon;
|
|
169
183
|
id: string;
|
|
170
184
|
placement: Placement;
|
|
171
185
|
appearance: Appearance;
|
|
@@ -179,6 +193,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
|
|
179
193
|
'aria-describedby': string;
|
|
180
194
|
};
|
|
181
195
|
}): any;
|
|
196
|
+
default?(_: {}): any;
|
|
182
197
|
}>;
|
|
183
198
|
export default _default;
|
|
184
199
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"QTooltip.vue.d.ts","sourceRoot":"","sources":["../../../src/components/QTooltip/QTooltip.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"QTooltip.vue.d.ts","sourceRoot":"","sources":["../../../src/components/QTooltip/QTooltip.vue"],"names":[],"mappings":"AAkCA;AAUC,OAAO,KAAK,EAAE,UAAU,EAAE,SAAS,EAAE,OAAO,EAAE,MAAM,uBAAuB,CAAA;AAC3E,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,oBAAoB,CAAA;AAClD,OAAO,KAAK,EAAE,IAAI,EAAE,MAAM,oBAAoB,CAAA;AAE9C,MAAM,MAAM,aAAa,GAAG;IAC3B;;OAEG;IACH,EAAE,CAAC,EAAE,MAAM,CAAA;IAEX;;OAEG;IACH,MAAM,EAAE,QAAQ,CAAA;IAEhB;;;;OAIG;IACH,UAAU,CAAC,EAAE,UAAU,CAAA;IAEvB;;OAEG;IACH,KAAK,CAAC,EAAE,OAAO,CAAA;IAEf;;;OAGG;IACH,MAAM,CAAC,EAAE,MAAM,CAAA;IAEf;;;OAGG;IACH,MAAM,CAAC,EAAE,OAAO,CAAA;IAEhB;;OAEG;IACH,KAAK,CAAC,EAAE,MAAM,CAAA;IAEd;;OAEG;IACH,QAAQ,CAAC,EAAE,OAAO,CAAA;IAElB;;OAEG;IACH,IAAI,CAAC,EAAE,OAAO,CAAA;IAEd;;OAEG;IACH,SAAS,CAAC,EAAE,SAAS,CAAA;IAErB;;OAEG;IACH,IAAI,EAAE,MAAM,CAAA;IAEZ;;OAEG;IACH,IAAI,CAAC,EAAE,IAAI,CAAA;IAEX;;OAEG;IACH,OAAO,CAAC,EAAE,OAAO,CAAA;IAEjB;;OAEG;IACH,KAAK,CAAC,EAAE,MAAM,GAAG,OAAO,EAAE,CAAA;CAC1B,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAuJF,wBAAwG;AAUxG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IAAE,QAAO;QAClD,MAAM,EAAE,CAAC,CAAC;KACT,CAAA;CAAE,CAAC"}
|
|
@@ -1,9 +1,10 @@
|
|
|
1
|
-
import { defineComponent as
|
|
2
|
-
import { QOverlay as
|
|
3
|
-
import {
|
|
4
|
-
|
|
1
|
+
import { defineComponent as s, mergeModels as p, useModel as m, openBlock as a, createElementBlock as o, Fragment as d, renderSlot as i, unref as t, createVNode as u, normalizeClass as f, withCtx as h, createBlock as y, normalizeProps as g, mergeProps as v, createCommentVNode as B, createTextVNode as b, toDisplayString as k } from "vue";
|
|
2
|
+
import { QOverlay as V } from "../QOverlay/index.js";
|
|
3
|
+
import { QIcon as w } from "../QIcon/index.js";
|
|
4
|
+
import { useId as x } from "../../composables/uid.js";
|
|
5
|
+
const M = ["innerHTML"], z = /* @__PURE__ */ s({
|
|
5
6
|
__name: "QTooltip",
|
|
6
|
-
props: /* @__PURE__ */
|
|
7
|
+
props: /* @__PURE__ */ p({
|
|
7
8
|
id: { default: void 0 },
|
|
8
9
|
anchor: {},
|
|
9
10
|
appearance: { default: "inverted" },
|
|
@@ -15,6 +16,7 @@ const _ = ["innerHTML"], b = { key: 1 }, k = /* @__PURE__ */ i({
|
|
|
15
16
|
html: { type: Boolean, default: !0 },
|
|
16
17
|
placement: { default: "right" },
|
|
17
18
|
text: {},
|
|
19
|
+
icon: { default: void 0 },
|
|
18
20
|
trigger: { default: "hover" },
|
|
19
21
|
class: { default: void 0 }
|
|
20
22
|
}, {
|
|
@@ -22,21 +24,21 @@ const _ = ["innerHTML"], b = { key: 1 }, k = /* @__PURE__ */ i({
|
|
|
22
24
|
modelModifiers: {}
|
|
23
25
|
}),
|
|
24
26
|
emits: ["update:modelValue"],
|
|
25
|
-
setup(
|
|
26
|
-
const e =
|
|
27
|
-
return (
|
|
28
|
-
|
|
27
|
+
setup(l) {
|
|
28
|
+
const e = l, c = m(l, "modelValue"), r = x(e.id);
|
|
29
|
+
return (n, _) => (a(), o(
|
|
30
|
+
d,
|
|
29
31
|
null,
|
|
30
32
|
[
|
|
31
|
-
|
|
32
|
-
props: { "aria-describedby":
|
|
33
|
+
i(n.$slots, "anchor", {
|
|
34
|
+
props: { "aria-describedby": t(r) }
|
|
33
35
|
}),
|
|
34
|
-
u(
|
|
35
|
-
"model-value":
|
|
36
|
+
u(t(V), {
|
|
37
|
+
"model-value": c.value,
|
|
36
38
|
anchor: e.anchor,
|
|
37
39
|
role: "tooltip",
|
|
38
40
|
"non-modal": "",
|
|
39
|
-
id:
|
|
41
|
+
id: t(r),
|
|
40
42
|
appearance: e.appearance,
|
|
41
43
|
arrow: e.arrow,
|
|
42
44
|
attach: e.attach,
|
|
@@ -48,19 +50,34 @@ const _ = ["innerHTML"], b = { key: 1 }, k = /* @__PURE__ */ i({
|
|
|
48
50
|
trigger: e.trigger
|
|
49
51
|
}, {
|
|
50
52
|
default: h(() => [
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
53
|
+
i(n.$slots, "default", {}, () => [
|
|
54
|
+
e.icon ? (a(), y(
|
|
55
|
+
t(w),
|
|
56
|
+
g(v({ key: 0 }, e.icon)),
|
|
57
|
+
null,
|
|
58
|
+
16
|
|
59
|
+
/* FULL_PROPS */
|
|
60
|
+
)) : B("v-if", !0),
|
|
61
|
+
e.html ? (a(), o("span", {
|
|
62
|
+
key: 1,
|
|
63
|
+
innerHTML: e.text
|
|
64
|
+
}, null, 8, M)) : (a(), o(
|
|
65
|
+
d,
|
|
66
|
+
{ key: 2 },
|
|
67
|
+
[
|
|
68
|
+
b(
|
|
69
|
+
k(e.text),
|
|
70
|
+
1
|
|
71
|
+
/* TEXT */
|
|
72
|
+
)
|
|
73
|
+
],
|
|
74
|
+
64
|
|
75
|
+
/* STABLE_FRAGMENT */
|
|
76
|
+
))
|
|
77
|
+
])
|
|
61
78
|
]),
|
|
62
|
-
_:
|
|
63
|
-
/*
|
|
79
|
+
_: 3
|
|
80
|
+
/* FORWARDED */
|
|
64
81
|
}, 8, ["model-value", "anchor", "id", "appearance", "arrow", "attach", "inline", "class", "delay", "disabled", "placement", "trigger"])
|
|
65
82
|
],
|
|
66
83
|
64
|
|
@@ -69,5 +86,5 @@ const _ = ["innerHTML"], b = { key: 1 }, k = /* @__PURE__ */ i({
|
|
|
69
86
|
}
|
|
70
87
|
});
|
|
71
88
|
export {
|
|
72
|
-
|
|
89
|
+
z as default
|
|
73
90
|
};
|
|
@@ -20,6 +20,10 @@ declare const QTooltip: {
|
|
|
20
20
|
disabled: {
|
|
21
21
|
type: import('vue').PropType<boolean>;
|
|
22
22
|
};
|
|
23
|
+
icon: {
|
|
24
|
+
type: import('vue').PropType<import('..').Icon>;
|
|
25
|
+
default: undefined;
|
|
26
|
+
};
|
|
23
27
|
id: {
|
|
24
28
|
type: import('vue').PropType<string>;
|
|
25
29
|
default: undefined;
|
|
@@ -72,6 +76,10 @@ declare const QTooltip: {
|
|
|
72
76
|
disabled: {
|
|
73
77
|
type: import('vue').PropType<boolean>;
|
|
74
78
|
};
|
|
79
|
+
icon: {
|
|
80
|
+
type: import('vue').PropType<import('..').Icon>;
|
|
81
|
+
default: undefined;
|
|
82
|
+
};
|
|
75
83
|
id: {
|
|
76
84
|
type: import('vue').PropType<string>;
|
|
77
85
|
default: undefined;
|
|
@@ -106,6 +114,7 @@ declare const QTooltip: {
|
|
|
106
114
|
}>>, {
|
|
107
115
|
class: string | unknown[];
|
|
108
116
|
html: boolean;
|
|
117
|
+
icon: import('..').Icon;
|
|
109
118
|
id: string;
|
|
110
119
|
placement: import('../../composables/overlay').Placement;
|
|
111
120
|
appearance: import('../../composables/overlay').Appearance;
|
|
@@ -141,6 +150,10 @@ declare const QTooltip: {
|
|
|
141
150
|
disabled: {
|
|
142
151
|
type: import('vue').PropType<boolean>;
|
|
143
152
|
};
|
|
153
|
+
icon: {
|
|
154
|
+
type: import('vue').PropType<import('..').Icon>;
|
|
155
|
+
default: undefined;
|
|
156
|
+
};
|
|
144
157
|
id: {
|
|
145
158
|
type: import('vue').PropType<string>;
|
|
146
159
|
default: undefined;
|
|
@@ -175,6 +188,7 @@ declare const QTooltip: {
|
|
|
175
188
|
}>>, {}, {}, {}, {}, {
|
|
176
189
|
class: string | unknown[];
|
|
177
190
|
html: boolean;
|
|
191
|
+
icon: import('..').Icon;
|
|
178
192
|
id: string;
|
|
179
193
|
placement: import('../../composables/overlay').Placement;
|
|
180
194
|
appearance: import('../../composables/overlay').Appearance;
|
|
@@ -207,6 +221,10 @@ declare const QTooltip: {
|
|
|
207
221
|
disabled: {
|
|
208
222
|
type: import('vue').PropType<boolean>;
|
|
209
223
|
};
|
|
224
|
+
icon: {
|
|
225
|
+
type: import('vue').PropType<import('..').Icon>;
|
|
226
|
+
default: undefined;
|
|
227
|
+
};
|
|
210
228
|
id: {
|
|
211
229
|
type: import('vue').PropType<string>;
|
|
212
230
|
default: undefined;
|
|
@@ -241,6 +259,7 @@ declare const QTooltip: {
|
|
|
241
259
|
}>>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
|
|
242
260
|
class: string | unknown[];
|
|
243
261
|
html: boolean;
|
|
262
|
+
icon: import('..').Icon;
|
|
244
263
|
id: string;
|
|
245
264
|
placement: import('../../composables/overlay').Placement;
|
|
246
265
|
appearance: import('../../composables/overlay').Appearance;
|
|
@@ -255,6 +274,7 @@ declare const QTooltip: {
|
|
|
255
274
|
'aria-describedby': string;
|
|
256
275
|
};
|
|
257
276
|
}): any;
|
|
277
|
+
default?(_: {}): any;
|
|
258
278
|
};
|
|
259
279
|
});
|
|
260
280
|
export { QTooltip };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/QTooltip/index.ts"],"names":[],"mappings":"AAMA,QAAA,MAAM,QAAQ
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/QTooltip/index.ts"],"names":[],"mappings":"AAMA,QAAA,MAAM,QAAQ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAAiD,CAAA;AAG/D,OAAO,EAAE,QAAQ,EAAE,CAAA"}
|