@rocketui/vue 0.0.69 → 0.0.70
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/rocket-ui-vue.d.ts +6 -0
- package/dist/rocket-ui-vue.js +5 -5
- package/dist/rocket-ui-vue.umd.cjs +1 -1
- package/dist/style.css +1 -1
- package/package.json +1 -1
package/dist/rocket-ui-vue.d.ts
CHANGED
|
@@ -1704,6 +1704,7 @@ export declare const RTooltip: __VLS_WithTemplateSlots_14<DefineComponent<{
|
|
|
1704
1704
|
};
|
|
1705
1705
|
triggerClass: {
|
|
1706
1706
|
type: PropType<string>;
|
|
1707
|
+
default: string;
|
|
1707
1708
|
};
|
|
1708
1709
|
placement: {
|
|
1709
1710
|
type: PropType<Placements>;
|
|
@@ -1755,6 +1756,7 @@ export declare const RTooltip: __VLS_WithTemplateSlots_14<DefineComponent<{
|
|
|
1755
1756
|
};
|
|
1756
1757
|
tooltipClass: {
|
|
1757
1758
|
type: PropType<string>;
|
|
1759
|
+
default: string;
|
|
1758
1760
|
};
|
|
1759
1761
|
}, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("show" | "hide")[], "show" | "hide", VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
|
|
1760
1762
|
text: {
|
|
@@ -1771,6 +1773,7 @@ export declare const RTooltip: __VLS_WithTemplateSlots_14<DefineComponent<{
|
|
|
1771
1773
|
};
|
|
1772
1774
|
triggerClass: {
|
|
1773
1775
|
type: PropType<string>;
|
|
1776
|
+
default: string;
|
|
1774
1777
|
};
|
|
1775
1778
|
placement: {
|
|
1776
1779
|
type: PropType<Placements>;
|
|
@@ -1822,6 +1825,7 @@ export declare const RTooltip: __VLS_WithTemplateSlots_14<DefineComponent<{
|
|
|
1822
1825
|
};
|
|
1823
1826
|
tooltipClass: {
|
|
1824
1827
|
type: PropType<string>;
|
|
1828
|
+
default: string;
|
|
1825
1829
|
};
|
|
1826
1830
|
}>> & {
|
|
1827
1831
|
onShow?: ((...args: any[]) => any) | undefined;
|
|
@@ -1830,6 +1834,7 @@ export declare const RTooltip: __VLS_WithTemplateSlots_14<DefineComponent<{
|
|
|
1830
1834
|
text: string;
|
|
1831
1835
|
offset: number;
|
|
1832
1836
|
disabled: boolean;
|
|
1837
|
+
triggerClass: string;
|
|
1833
1838
|
placement: Placements;
|
|
1834
1839
|
padding: number;
|
|
1835
1840
|
dark: boolean;
|
|
@@ -1842,6 +1847,7 @@ export declare const RTooltip: __VLS_WithTemplateSlots_14<DefineComponent<{
|
|
|
1842
1847
|
outsideClick: boolean;
|
|
1843
1848
|
triggerContent: string;
|
|
1844
1849
|
resizable: boolean;
|
|
1850
|
+
tooltipClass: string;
|
|
1845
1851
|
}>, {
|
|
1846
1852
|
default?(_: {
|
|
1847
1853
|
activators: {
|
package/dist/rocket-ui-vue.js
CHANGED
|
@@ -8963,14 +8963,14 @@ const U5 = ["aria-disabled", "onClick", "onMouseenter", "onMouseleave", "onMouse
|
|
|
8963
8963
|
outsideClick: { type: Boolean, default: !1 },
|
|
8964
8964
|
triggerContent: { default: "" },
|
|
8965
8965
|
resizable: { type: Boolean, default: !0 },
|
|
8966
|
-
triggerClass:
|
|
8967
|
-
tooltipClass:
|
|
8966
|
+
triggerClass: { default: "" },
|
|
8967
|
+
tooltipClass: { default: "" }
|
|
8968
8968
|
},
|
|
8969
8969
|
emits: ["show", "hide"],
|
|
8970
8970
|
setup(H, { emit: V }) {
|
|
8971
8971
|
const C = H;
|
|
8972
8972
|
e2((O) => ({
|
|
8973
|
-
"
|
|
8973
|
+
"048338ae": p(b)
|
|
8974
8974
|
}));
|
|
8975
8975
|
const L = D(null), M = D(null), A = D(null);
|
|
8976
8976
|
function i() {
|
|
@@ -8978,7 +8978,7 @@ const U5 = ["aria-disabled", "onClick", "onMouseenter", "onMouseleave", "onMouse
|
|
|
8978
8978
|
u || (M.value.style.display = "block", document.body.appendChild(M.value), V("show"), S1(L, M, A, O, w, T), d(), C.outsideClick && l("add"));
|
|
8979
8979
|
}
|
|
8980
8980
|
function e() {
|
|
8981
|
-
M.value.style.display = "", M.value
|
|
8981
|
+
M.value.style.display = "", document.body.removeChild(M.value), V("hide"), C.outsideClick && l("remove");
|
|
8982
8982
|
}
|
|
8983
8983
|
function d() {
|
|
8984
8984
|
C.autoHide && setTimeout(() => {
|
|
@@ -9081,7 +9081,7 @@ const j5 = (H, V) => {
|
|
|
9081
9081
|
for (const [L, M] of V)
|
|
9082
9082
|
C[L] = M;
|
|
9083
9083
|
return C;
|
|
9084
|
-
}, w3 = /* @__PURE__ */ j5(K5, [["__scopeId", "data-v-
|
|
9084
|
+
}, w3 = /* @__PURE__ */ j5(K5, [["__scopeId", "data-v-9d03f595"]]), q5 = { class: "r-breadcrumb" }, Y5 = {
|
|
9085
9085
|
key: 0,
|
|
9086
9086
|
class: "r-breadcrumb__title"
|
|
9087
9087
|
}, P3 = /* @__PURE__ */ F({
|