@dovetail-v2/refine 0.3.30-alpha.0 → 0.3.30-alpha.1

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.
@@ -7,5 +7,6 @@ export declare const ServiceInClusterAccessComponent: React.FC<Props>;
7
7
  export declare const ServiceOutClusterAccessComponent: React.FC<Props & {
8
8
  breakLine?: boolean;
9
9
  clusterVip: string;
10
+ showDashedUnderline?: boolean;
10
11
  }>;
11
12
  export {};
package/dist/refine.cjs CHANGED
@@ -10307,7 +10307,8 @@ const DashedUnderlineSpanStyle = "dvp1i89";
10307
10307
  const ServiceOutClusterAccessComponent = ({
10308
10308
  service,
10309
10309
  breakLine = true,
10310
- clusterVip
10310
+ clusterVip,
10311
+ showDashedUnderline = true
10311
10312
  }) => {
10312
10313
  var _a, _b, _c, _d, _e;
10313
10314
  const {
@@ -10327,6 +10328,9 @@ const ServiceOutClusterAccessComponent = ({
10327
10328
  title: i18n2.t("dovetail.default_http_protocol_tooltip"),
10328
10329
  children: /* @__PURE__ */ common.jsxRuntimeExports.jsx("span", {
10329
10330
  className: DashedUnderlineSpanStyle,
10331
+ style: showDashedUnderline ? void 0 : {
10332
+ borderBottom: "none"
10333
+ },
10330
10334
  children: `${clusterVip}:${p.nodePort}`
10331
10335
  })
10332
10336
  })
@@ -10351,6 +10355,9 @@ const ServiceOutClusterAccessComponent = ({
10351
10355
  title: i18n2.t("dovetail.default_http_protocol_tooltip"),
10352
10356
  children: /* @__PURE__ */ common.jsxRuntimeExports.jsxs("span", {
10353
10357
  className: DashedUnderlineSpanStyle,
10358
+ style: showDashedUnderline ? void 0 : {
10359
+ borderBottom: "none"
10360
+ },
10354
10361
  children: [clusterVip, ":", p.nodePort]
10355
10362
  })
10356
10363
  })
@@ -14203,7 +14210,8 @@ const ServiceOutClusterAccessField = (clusterVip) => ({
14203
14210
  return /* @__PURE__ */ common.jsxRuntimeExports.jsx(ServiceOutClusterAccessComponent, {
14204
14211
  service: record,
14205
14212
  breakLine: false,
14206
- clusterVip
14213
+ clusterVip,
14214
+ showDashedUnderline: false
14207
14215
  });
14208
14216
  }
14209
14217
  });
package/dist/refine.js CHANGED
@@ -10288,7 +10288,8 @@ const DashedUnderlineSpanStyle = "dvp1i89";
10288
10288
  const ServiceOutClusterAccessComponent = ({
10289
10289
  service,
10290
10290
  breakLine = true,
10291
- clusterVip
10291
+ clusterVip,
10292
+ showDashedUnderline = true
10292
10293
  }) => {
10293
10294
  var _a, _b, _c, _d, _e;
10294
10295
  const {
@@ -10308,6 +10309,9 @@ const ServiceOutClusterAccessComponent = ({
10308
10309
  title: i18n2.t("dovetail.default_http_protocol_tooltip"),
10309
10310
  children: /* @__PURE__ */ jsxRuntimeExports.jsx("span", {
10310
10311
  className: DashedUnderlineSpanStyle,
10312
+ style: showDashedUnderline ? void 0 : {
10313
+ borderBottom: "none"
10314
+ },
10311
10315
  children: `${clusterVip}:${p.nodePort}`
10312
10316
  })
10313
10317
  })
@@ -10332,6 +10336,9 @@ const ServiceOutClusterAccessComponent = ({
10332
10336
  title: i18n2.t("dovetail.default_http_protocol_tooltip"),
10333
10337
  children: /* @__PURE__ */ jsxRuntimeExports.jsxs("span", {
10334
10338
  className: DashedUnderlineSpanStyle,
10339
+ style: showDashedUnderline ? void 0 : {
10340
+ borderBottom: "none"
10341
+ },
10335
10342
  children: [clusterVip, ":", p.nodePort]
10336
10343
  })
10337
10344
  })
@@ -14184,7 +14191,8 @@ const ServiceOutClusterAccessField = (clusterVip) => ({
14184
14191
  return /* @__PURE__ */ jsxRuntimeExports.jsx(ServiceOutClusterAccessComponent, {
14185
14192
  service: record,
14186
14193
  breakLine: false,
14187
- clusterVip
14194
+ clusterVip,
14195
+ showDashedUnderline: false
14188
14196
  });
14189
14197
  }
14190
14198
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dovetail-v2/refine",
3
- "version": "0.3.30-alpha.0",
3
+ "version": "0.3.30-alpha.1",
4
4
  "type": "module",
5
5
  "files": [
6
6
  "dist",