@nswds/app 1.101.0 → 1.102.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/dist/index.cjs +14 -13
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +14 -13
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -15640,7 +15640,7 @@ function PairDetailCard({
|
|
|
15640
15640
|
]
|
|
15641
15641
|
}
|
|
15642
15642
|
);
|
|
15643
|
-
return /* @__PURE__ */ jsxs(Card, { className: "gap-0", children: [
|
|
15643
|
+
return /* @__PURE__ */ jsxs(Card, { className: "gap-0 pb-0", children: [
|
|
15644
15644
|
/* @__PURE__ */ jsxs(CardHeader, { className: "gap-4 border-b", children: [
|
|
15645
15645
|
/* @__PURE__ */ jsxs("div", { className: "space-y-1", children: [
|
|
15646
15646
|
/* @__PURE__ */ jsx(CardTitle, { children: role }),
|
|
@@ -15654,24 +15654,25 @@ function PairDetailCard({
|
|
|
15654
15654
|
}
|
|
15655
15655
|
)
|
|
15656
15656
|
] }),
|
|
15657
|
-
/* @__PURE__ */ jsx(CardContent, { className: "px-0", children: /* @__PURE__ */ jsx("
|
|
15658
|
-
/* @__PURE__ */
|
|
15659
|
-
|
|
15657
|
+
/* @__PURE__ */ jsx(CardContent, { className: "px-0 pb-3", children: /* @__PURE__ */ jsx("div", { className: "divide-y divide-grey-100 dark:divide-grey-800", children: valueRows.map((row) => /* @__PURE__ */ jsxs("div", { className: "flex items-start justify-between gap-4 px-6 py-3", children: [
|
|
15658
|
+
/* @__PURE__ */ jsxs("div", { className: "min-w-0 flex-1", children: [
|
|
15659
|
+
/* @__PURE__ */ jsx("p", { className: "text-xs font-semibold tracking-[0.16em] text-muted-foreground uppercase", children: row.label }),
|
|
15660
15660
|
/* @__PURE__ */ jsx(
|
|
15661
|
-
"
|
|
15661
|
+
"p",
|
|
15662
15662
|
{
|
|
15663
15663
|
className: cn(
|
|
15664
|
-
"min-w-0
|
|
15664
|
+
"mt-2 min-w-0 text-base text-foreground",
|
|
15665
15665
|
row.mono && "font-mono text-sm break-all sm:text-base"
|
|
15666
15666
|
),
|
|
15667
15667
|
children: row.value
|
|
15668
15668
|
}
|
|
15669
|
-
)
|
|
15670
|
-
|
|
15671
|
-
|
|
15672
|
-
|
|
15673
|
-
)
|
|
15674
|
-
|
|
15669
|
+
)
|
|
15670
|
+
] }),
|
|
15671
|
+
row.copyable ? renderCopyButton(
|
|
15672
|
+
row.key,
|
|
15673
|
+
`Copy ${role.toLowerCase()} ${row.label.toLowerCase()}`,
|
|
15674
|
+
"mt-0.5"
|
|
15675
|
+
) : null
|
|
15675
15676
|
] }, row.key)) }) })
|
|
15676
15677
|
] });
|
|
15677
15678
|
}
|
|
@@ -18926,7 +18927,7 @@ function FormatToggle({ format, setFormat }) {
|
|
|
18926
18927
|
|
|
18927
18928
|
// package.json
|
|
18928
18929
|
var package_default = {
|
|
18929
|
-
version: "1.
|
|
18930
|
+
version: "1.101.0"};
|
|
18930
18931
|
function Logo(props) {
|
|
18931
18932
|
return /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
18932
18933
|
/* @__PURE__ */ jsx("span", { className: "sr-only", children: "NSW Government" }),
|