comand-component-library 3.3.79 → 3.3.80
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/comand-component-library.js +17 -8
- package/dist/comand-component-library.umd.cjs +4 -4
- package/dist/style.css +1 -1
- package/package.json +2 -2
- package/src/App.vue +22 -10
- package/src/components/CmdSocialNetworks.vue +6 -3
- package/src/components/CmdTabs.vue +16 -4
- package/src/components/CmdThumbnailScroller.vue +1 -1
- package/src/components/CmdTooltip.vue +19 -0
- package/src/components/CmdUploadForm.vue +1 -1
|
@@ -1755,6 +1755,10 @@ const bl = {
|
|
|
1755
1755
|
type: String,
|
|
1756
1756
|
required: !1
|
|
1757
1757
|
},
|
|
1758
|
+
delayToShowTooltip: {
|
|
1759
|
+
type: Number,
|
|
1760
|
+
default: 0
|
|
1761
|
+
},
|
|
1758
1762
|
relatedId: {
|
|
1759
1763
|
type: String,
|
|
1760
1764
|
required: !1
|
|
@@ -1789,6 +1793,11 @@ const bl = {
|
|
|
1789
1793
|
this.getPointerPosition(e), this.tooltipVisibility = !this.tooltipVisibility;
|
|
1790
1794
|
},
|
|
1791
1795
|
showTooltip(e) {
|
|
1796
|
+
this.delayToShowTooltip > 0 ? setTimeout(() => {
|
|
1797
|
+
this.toggleVisibility(e);
|
|
1798
|
+
}, this.delayToShowTooltip) : this.toggleVisibility(e);
|
|
1799
|
+
},
|
|
1800
|
+
toggleVisibility(e) {
|
|
1792
1801
|
this.toggleVisibilityByClick || (this.tooltipVisibility = !0), this.getPointerPosition(e);
|
|
1793
1802
|
},
|
|
1794
1803
|
hideTooltipOnEsc(e) {
|
|
@@ -6797,7 +6806,7 @@ const Yu = {
|
|
|
6797
6806
|
},
|
|
6798
6807
|
textAlign: {
|
|
6799
6808
|
type: String,
|
|
6800
|
-
default: "
|
|
6809
|
+
default: "right"
|
|
6801
6810
|
},
|
|
6802
6811
|
cmdFormElement: {
|
|
6803
6812
|
type: Object,
|
|
@@ -6854,7 +6863,7 @@ function $u(e, i, t, a, s, n) {
|
|
|
6854
6863
|
(l(!0), o(b, null, B(n.validNetworks, (c) => (l(), o("li", null, [
|
|
6855
6864
|
(l(), o("a", {
|
|
6856
6865
|
key: c.path,
|
|
6857
|
-
class: C(["button", { disabled: t.userMustAcceptDataPrivacy && !s.dataPrivacyAccepted }, { "text-align-
|
|
6866
|
+
class: C(["button", { disabled: t.userMustAcceptDataPrivacy && !s.dataPrivacyAccepted }, { "text-align-left": t.textAlign === "left" }]),
|
|
6858
6867
|
id: c.id,
|
|
6859
6868
|
href: n.getUrl(c),
|
|
6860
6869
|
onClick: i[1] || (i[1] = (...h) => n.preventOnDisabled && n.preventOnDisabled(...h)),
|
|
@@ -7868,14 +7877,14 @@ function im(e, i, t, a, s, n) {
|
|
|
7868
7877
|
role: "tablist"
|
|
7869
7878
|
}, [
|
|
7870
7879
|
(l(!0), o(b, null, B(t.tabs, (r, c) => (l(), o("li", {
|
|
7880
|
+
class: C({ active: s.showTab === c }),
|
|
7871
7881
|
key: c,
|
|
7872
7882
|
role: "tab"
|
|
7873
7883
|
}, [
|
|
7874
7884
|
f("a", {
|
|
7875
|
-
|
|
7885
|
+
href: "#",
|
|
7876
7886
|
onClick: S((h) => n.setActiveTab(c), ["prevent"]),
|
|
7877
|
-
title: r.name ? void 0 : r.tooltip
|
|
7878
|
-
href: "#"
|
|
7887
|
+
title: r.name ? void 0 : r.tooltip
|
|
7879
7888
|
}, [
|
|
7880
7889
|
r.iconClass ? (l(), _(u, {
|
|
7881
7890
|
key: 0,
|
|
@@ -7883,8 +7892,8 @@ function im(e, i, t, a, s, n) {
|
|
|
7883
7892
|
type: r.iconType
|
|
7884
7893
|
}, null, 8, ["iconClass", "type"])) : m("", !0),
|
|
7885
7894
|
r.name ? (l(), o("span", $d, g(r.name), 1)) : m("", !0)
|
|
7886
|
-
],
|
|
7887
|
-
]))), 128))
|
|
7895
|
+
], 8, Xd)
|
|
7896
|
+
], 2))), 128))
|
|
7888
7897
|
], 2),
|
|
7889
7898
|
t.useSlot ? (l(!0), o(b, { key: 0 }, B(t.tabs.length, (r) => $((l(), o("div", {
|
|
7890
7899
|
key: r,
|
|
@@ -9104,7 +9113,7 @@ const sh = {
|
|
|
9104
9113
|
type: Object,
|
|
9105
9114
|
required: !1
|
|
9106
9115
|
},
|
|
9107
|
-
|
|
9116
|
+
cmdHeadlineNoFileToUpload: {
|
|
9108
9117
|
type: Object,
|
|
9109
9118
|
required: !1
|
|
9110
9119
|
},
|