@quoreadmin/ui 1.0.23 → 1.0.24
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/index.css +1 -1
- package/dist/index.js +15 -4
- package/dist/index.umd.cjs +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -27494,8 +27494,8 @@ const LW = /* @__PURE__ */ ze(xW, [["render", PW], ["__scopeId", "data-v-da5da0f
|
|
|
27494
27494
|
type: Boolean,
|
|
27495
27495
|
default: !1
|
|
27496
27496
|
},
|
|
27497
|
-
/**
|
|
27498
|
-
|
|
27497
|
+
/** Controls if the tooltip is in controlled mode */
|
|
27498
|
+
controlled: {
|
|
27499
27499
|
type: Boolean,
|
|
27500
27500
|
default: !1
|
|
27501
27501
|
},
|
|
@@ -27503,14 +27503,25 @@ const LW = /* @__PURE__ */ ze(xW, [["render", PW], ["__scopeId", "data-v-da5da0f
|
|
|
27503
27503
|
tooltipClasses: {
|
|
27504
27504
|
type: [String, Array, Object],
|
|
27505
27505
|
default: ""
|
|
27506
|
+
},
|
|
27507
|
+
/** Controls visibility in controlled mode */
|
|
27508
|
+
visible: {
|
|
27509
|
+
type: Boolean,
|
|
27510
|
+
default: !1
|
|
27506
27511
|
}
|
|
27512
|
+
},
|
|
27513
|
+
setup(n) {
|
|
27514
|
+
return {
|
|
27515
|
+
isVisible: Y(() => n.controlled ? n.visible : !1)
|
|
27516
|
+
};
|
|
27507
27517
|
}
|
|
27508
27518
|
}), RW = ["aria-describedby"], $W = ["id"];
|
|
27509
27519
|
function FW(n, e, t, r, i, s) {
|
|
27510
27520
|
return C(), E("div", {
|
|
27511
27521
|
class: j([
|
|
27512
27522
|
"tooltip-container",
|
|
27513
|
-
n.
|
|
27523
|
+
n.controlled ? "controlled" : "",
|
|
27524
|
+
n.isVisible ? "is-visible" : ""
|
|
27514
27525
|
]),
|
|
27515
27526
|
"aria-describedby": n.id
|
|
27516
27527
|
}, [
|
|
@@ -27532,7 +27543,7 @@ function FW(n, e, t, r, i, s) {
|
|
|
27532
27543
|
], 10, $W)
|
|
27533
27544
|
], 10, RW);
|
|
27534
27545
|
}
|
|
27535
|
-
const gp = /* @__PURE__ */ ze(_W, [["render", FW], ["__scopeId", "data-v-
|
|
27546
|
+
const gp = /* @__PURE__ */ ze(_W, [["render", FW], ["__scopeId", "data-v-fac02047"]]), yp = () => {
|
|
27536
27547
|
const n = B(""), e = navigator.userAgent;
|
|
27537
27548
|
return e.match("/Android|webOS|iPhone|iPod|BlackBerry/i") ? n.value = "mobile" : e.match("/iPad|Tablet/i") || // IPad using iPadOS no longer shows iPad in the user agent so check touchPoints
|
|
27538
27549
|
// Check if the device has touchpoints.
|