@sanity/ailf-studio 0.1.24 → 0.1.26
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/index.d.ts +1 -0
- package/dist/index.js +9 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
|
@@ -1537,6 +1537,13 @@ var reportSchema = defineType4({
|
|
|
1537
1537
|
title: "Unchanged Areas",
|
|
1538
1538
|
type: "array"
|
|
1539
1539
|
}),
|
|
1540
|
+
defineField4({
|
|
1541
|
+
name: "notEvaluated",
|
|
1542
|
+
of: [{ type: "string" }],
|
|
1543
|
+
title: "Not Evaluated Areas",
|
|
1544
|
+
description: "Areas present in only one of the two runs (e.g., auto-scoped release eval vs full baseline).",
|
|
1545
|
+
type: "array"
|
|
1546
|
+
}),
|
|
1540
1547
|
defineField4({
|
|
1541
1548
|
name: "noiseThreshold",
|
|
1542
1549
|
title: "Noise Threshold",
|
|
@@ -3986,6 +3993,7 @@ function ReportRow({
|
|
|
3986
3993
|
/* @__PURE__ */ jsxs12(Flex9, { align: "center", gap: 2, wrap: "wrap", children: [
|
|
3987
3994
|
/* @__PURE__ */ jsx15(Text13, { size: isSmall ? 2 : 3, weight: "semibold", children: report.tag ?? formatCardDate(report.completedAt) }),
|
|
3988
3995
|
git && /* @__PURE__ */ jsxs12(Flex9, { align: "center", gap: 2, children: [
|
|
3996
|
+
git.repo && /* @__PURE__ */ jsx15(Code, { size: isSmall ? 1 : 2, style: { opacity: 0.7 }, children: git.repo }),
|
|
3989
3997
|
/* @__PURE__ */ jsxs12(Inline, { space: 1, children: [
|
|
3990
3998
|
/* @__PURE__ */ jsx15(GitBranchIcon, { style: { opacity: 0.6 } }),
|
|
3991
3999
|
/* @__PURE__ */ jsx15(Code, { size: isSmall ? 1 : 2, children: git.branch })
|
|
@@ -3994,7 +4002,7 @@ function ReportRow({
|
|
|
3994
4002
|
"#",
|
|
3995
4003
|
git.prNumber
|
|
3996
4004
|
] }),
|
|
3997
|
-
tier === "full" && /* @__PURE__ */ jsx15(Code, { size: 1, style: { opacity: 0.5 }, children: git.sha.slice(0, 7) })
|
|
4005
|
+
tier === "full" && git.sha && git.sha !== "unknown" && /* @__PURE__ */ jsx15(Code, { size: 1, style: { opacity: 0.5 }, children: git.sha.slice(0, 7) })
|
|
3998
4006
|
] })
|
|
3999
4007
|
] }),
|
|
4000
4008
|
/* @__PURE__ */ jsxs12(Flex9, { align: "center", gap: 2, wrap: "wrap", children: [
|