revdev-components 0.189.0 → 0.191.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/build/index.js +3 -0
- package/build/styles.css +2 -1
- package/build/utils/text.d.ts +1 -1
- package/package.json +1 -1
package/build/index.js
CHANGED
|
@@ -5611,6 +5611,9 @@ var s$4 = {"root":"index-module_root__AUcgm","separator":"index-module_separator
|
|
|
5611
5611
|
var TextUtil = {
|
|
5612
5612
|
maxTextEllipsis: function (text, maxLength) {
|
|
5613
5613
|
if (text === void 0) { text = ""; }
|
|
5614
|
+
if (!text) {
|
|
5615
|
+
return "";
|
|
5616
|
+
}
|
|
5614
5617
|
if (text.length <= maxLength) {
|
|
5615
5618
|
return text;
|
|
5616
5619
|
}
|
package/build/styles.css
CHANGED
|
@@ -35,6 +35,7 @@
|
|
|
35
35
|
--backLayoutSpinColor: rgb(58, 63, 81);
|
|
36
36
|
--iconDropBackgroundColor: white;
|
|
37
37
|
--helpTipMargin: none;
|
|
38
|
+
--helpTipFontSize: 0.8em;
|
|
38
39
|
}
|
|
39
40
|
|
|
40
41
|
html,
|
|
@@ -663,6 +664,6 @@ body {
|
|
|
663
664
|
}
|
|
664
665
|
}
|
|
665
666
|
.index-module_icon__-KK3y {
|
|
666
|
-
font-size:
|
|
667
|
+
font-size: var(--helpTipFontSize);
|
|
667
668
|
margin: var(--helpTipMargin);
|
|
668
669
|
}
|
package/build/utils/text.d.ts
CHANGED