@opentinyvue/vue-runtime 3.30.0 → 3.31.0
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/dist2/tailwind.css +191 -123
- package/dist2/tiny-vue-all.mjs +24352 -23580
- package/dist2/tiny-vue-common.mjs +232 -218
- package/dist2/tiny-vue-directive.mjs +18 -4
- package/dist2/tiny-vue-huicharts.mjs +1237 -1237
- package/dist2/tiny-vue-icon-saas.mjs +2 -2
- package/dist2/tiny-vue-icon.mjs +562 -539
- package/dist2/tiny-vue-locale.mjs +32 -32
- package/dist2/tiny-vue-mobile-first.mjs +16268 -15879
- package/dist2/tiny-vue-pc.mjs +23778 -22572
- package/dist2/tiny-vue-saas-common.mjs +176 -162
- package/dist2/tiny-vue-simple.mjs +16480 -15284
- package/dist3/tailwind.css +191 -123
- package/dist3/tiny-vue-all.mjs +22749 -21932
- package/dist3/tiny-vue-common.mjs +1 -1
- package/dist3/tiny-vue-directive.mjs +18 -4
- package/dist3/tiny-vue-huicharts.mjs +1193 -1193
- package/dist3/tiny-vue-icon-saas.mjs +10106 -10097
- package/dist3/tiny-vue-icon.mjs +2795 -2748
- package/dist3/tiny-vue-locale.mjs +33 -33
- package/dist3/tiny-vue-mobile-first.mjs +17553 -17135
- package/dist3/tiny-vue-pc.mjs +26003 -24783
- package/dist3/tiny-vue-saas-common.mjs +2 -2
- package/dist3/tiny-vue-simple.mjs +16684 -15474
- package/package.json +1 -1
|
@@ -2794,7 +2794,14 @@ const ea = nt({
|
|
|
2794
2794
|
if (s && (!Ve.Comment || s[0].type !== Ve.Comment))
|
|
2795
2795
|
return s;
|
|
2796
2796
|
let a;
|
|
2797
|
-
|
|
2797
|
+
if (i.renderContent)
|
|
2798
|
+
try {
|
|
2799
|
+
a = i.renderContent(e, i.content);
|
|
2800
|
+
} catch (l) {
|
|
2801
|
+
console.warn("[TINY Error] renderContent catch error:", l), a = i.content || null;
|
|
2802
|
+
}
|
|
2803
|
+
else i.pre ? a = i.content ? e("pre", i.content) : null : a = i.content;
|
|
2804
|
+
return a;
|
|
2798
2805
|
};
|
|
2799
2806
|
if (!Object.prototype.hasOwnProperty.call(this, "popperVM")) {
|
|
2800
2807
|
const i = {
|
|
@@ -3065,9 +3072,16 @@ const ia = nt({
|
|
|
3065
3072
|
if (l)
|
|
3066
3073
|
return l;
|
|
3067
3074
|
let u;
|
|
3068
|
-
|
|
3075
|
+
if (a.renderContent)
|
|
3076
|
+
try {
|
|
3077
|
+
u = a.renderContent(e, a.content);
|
|
3078
|
+
} catch (c) {
|
|
3079
|
+
console.warn("[TINY Error] renderContent catch error:", c), u = a.content || null;
|
|
3080
|
+
}
|
|
3081
|
+
else a.pre ? u = a.content ? e("pre", {
|
|
3069
3082
|
class: "tiny-tooltip-text-pre whitespace-pre-wrap"
|
|
3070
|
-
}, a.content) : null : u = a.content
|
|
3083
|
+
}, a.content) : null : u = a.content;
|
|
3084
|
+
return u;
|
|
3071
3085
|
};
|
|
3072
3086
|
if (!Object.hasOwnProperty.call(this, "popperVM")) {
|
|
3073
3087
|
const a = {
|
|
@@ -3325,7 +3339,7 @@ const q = nt({
|
|
|
3325
3339
|
template: ca
|
|
3326
3340
|
});
|
|
3327
3341
|
}
|
|
3328
|
-
}), da = "3.
|
|
3342
|
+
}), da = "3.31.0";
|
|
3329
3343
|
q.model = {
|
|
3330
3344
|
prop: "modelValue",
|
|
3331
3345
|
event: "update:modelValue"
|