@dovetail-v2/refine 0.3.26-alpha.0 → 0.3.26-alpha.2
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/refine.cjs +10 -5
- package/dist/refine.js +10 -5
- package/package.json +1 -1
package/dist/refine.cjs
CHANGED
|
@@ -1280,7 +1280,7 @@ const clear_search_condition = "清空搜索条件";
|
|
|
1280
1280
|
const no_labels = "无标签";
|
|
1281
1281
|
const no_annotations = "无注解";
|
|
1282
1282
|
const pause_scheduling = "暂停调度";
|
|
1283
|
-
const service_port_name_tip = "
|
|
1283
|
+
const service_port_name_tip = "端口数量为 1 时,名称为选填项;大于 1 时,名称为必填项。";
|
|
1284
1284
|
const dovetail = {
|
|
1285
1285
|
copy,
|
|
1286
1286
|
reset_arguments,
|
|
@@ -7642,14 +7642,19 @@ function ValueDisplay(props) {
|
|
|
7642
7642
|
className,
|
|
7643
7643
|
style
|
|
7644
7644
|
} = props;
|
|
7645
|
-
const
|
|
7646
|
-
|
|
7645
|
+
const htmlTitle = typeof value2 === "string" || typeof value2 === "number" ? String(value2) : void 0;
|
|
7646
|
+
const result = useOverflow ? /* @__PURE__ */ common.jsxRuntimeExports.jsx("div", {
|
|
7647
|
+
title: htmlTitle,
|
|
7647
7648
|
style,
|
|
7648
|
-
className: common.cx_default(className, ContentStyle$2)
|
|
7649
|
+
className: common.cx_default(className, ContentStyle$2),
|
|
7650
|
+
children: /* @__PURE__ */ common.jsxRuntimeExports.jsx(eagle.OverflowTooltip, {
|
|
7651
|
+
content: value2,
|
|
7652
|
+
className: ContentStyle$2
|
|
7653
|
+
})
|
|
7649
7654
|
}) : /* @__PURE__ */ common.jsxRuntimeExports.jsx("div", {
|
|
7650
7655
|
style,
|
|
7651
7656
|
className: common.cx_default(className, ContentStyle$2),
|
|
7652
|
-
title:
|
|
7657
|
+
title: htmlTitle ?? "",
|
|
7653
7658
|
children: value2
|
|
7654
7659
|
});
|
|
7655
7660
|
return EMPTY_VALUES.includes(value2) ? /* @__PURE__ */ common.jsxRuntimeExports.jsx("div", {
|
package/dist/refine.js
CHANGED
|
@@ -1261,7 +1261,7 @@ const clear_search_condition = "清空搜索条件";
|
|
|
1261
1261
|
const no_labels = "无标签";
|
|
1262
1262
|
const no_annotations = "无注解";
|
|
1263
1263
|
const pause_scheduling = "暂停调度";
|
|
1264
|
-
const service_port_name_tip = "
|
|
1264
|
+
const service_port_name_tip = "端口数量为 1 时,名称为选填项;大于 1 时,名称为必填项。";
|
|
1265
1265
|
const dovetail = {
|
|
1266
1266
|
copy,
|
|
1267
1267
|
reset_arguments,
|
|
@@ -7623,14 +7623,19 @@ function ValueDisplay(props) {
|
|
|
7623
7623
|
className,
|
|
7624
7624
|
style
|
|
7625
7625
|
} = props;
|
|
7626
|
-
const
|
|
7627
|
-
|
|
7626
|
+
const htmlTitle = typeof value2 === "string" || typeof value2 === "number" ? String(value2) : void 0;
|
|
7627
|
+
const result = useOverflow ? /* @__PURE__ */ jsxRuntimeExports.jsx("div", {
|
|
7628
|
+
title: htmlTitle,
|
|
7628
7629
|
style,
|
|
7629
|
-
className: cx_default(className, ContentStyle$2)
|
|
7630
|
+
className: cx_default(className, ContentStyle$2),
|
|
7631
|
+
children: /* @__PURE__ */ jsxRuntimeExports.jsx(OverflowTooltip, {
|
|
7632
|
+
content: value2,
|
|
7633
|
+
className: ContentStyle$2
|
|
7634
|
+
})
|
|
7630
7635
|
}) : /* @__PURE__ */ jsxRuntimeExports.jsx("div", {
|
|
7631
7636
|
style,
|
|
7632
7637
|
className: cx_default(className, ContentStyle$2),
|
|
7633
|
-
title:
|
|
7638
|
+
title: htmlTitle ?? "",
|
|
7634
7639
|
children: value2
|
|
7635
7640
|
});
|
|
7636
7641
|
return EMPTY_VALUES.includes(value2) ? /* @__PURE__ */ jsxRuntimeExports.jsx("div", {
|