@acoustte-digital-services/digitalstore-controls-dev 0.8.1-dev.20260624051314 → 0.8.1-dev.20260624054020
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.js +3 -3
- package/dist/index.mjs +3 -3
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -5970,7 +5970,7 @@ var DocumentNode = (props) => {
|
|
|
5970
5970
|
}
|
|
5971
5971
|
}
|
|
5972
5972
|
if (documents.length === 0) return null;
|
|
5973
|
-
return /* @__PURE__ */ (0, import_jsx_runtime70.jsx)("div", { className: "
|
|
5973
|
+
return /* @__PURE__ */ (0, import_jsx_runtime70.jsx)("div", { className: "", children: documents.map((doc, index) => {
|
|
5974
5974
|
const documentUrl = AssetUtility_default.resolveUrl(
|
|
5975
5975
|
props.assetBaseUrl,
|
|
5976
5976
|
doc.assetUrl
|
|
@@ -5991,13 +5991,13 @@ var DocumentNode = (props) => {
|
|
|
5991
5991
|
return /* @__PURE__ */ (0, import_jsx_runtime70.jsxs)(
|
|
5992
5992
|
"div",
|
|
5993
5993
|
{
|
|
5994
|
-
className: "flex items-center justify-between py-4 bg-default",
|
|
5994
|
+
className: "flex items-center justify-between py-4 bg-default border-t first:border-t-0 gap-4",
|
|
5995
5995
|
children: [
|
|
5996
5996
|
/* @__PURE__ */ (0, import_jsx_runtime70.jsxs)("div", { className: "flex items-center space-x-4", children: [
|
|
5997
5997
|
/* @__PURE__ */ (0, import_jsx_runtime70.jsx)("div", { className: "flex items-center justify-center p-2 rounded bg-neutral-soft", children: /* @__PURE__ */ (0, import_jsx_runtime70.jsx)(Icon2, {}) }),
|
|
5998
5998
|
/* @__PURE__ */ (0, import_jsx_runtime70.jsxs)("div", { className: "flex items-baseline space-x-2", children: [
|
|
5999
5999
|
/* @__PURE__ */ (0, import_jsx_runtime70.jsx)("h4", { className: "text-base font-semibold", children: documentTitle }),
|
|
6000
|
-
/* @__PURE__ */ (0, import_jsx_runtime70.jsxs)("span", { className: "text-
|
|
6000
|
+
/* @__PURE__ */ (0, import_jsx_runtime70.jsxs)("span", { className: "text-xs font-semibold uppercase", children: [
|
|
6001
6001
|
"(",
|
|
6002
6002
|
extLabel,
|
|
6003
6003
|
")"
|
package/dist/index.mjs
CHANGED
|
@@ -4364,7 +4364,7 @@ var DocumentNode = (props) => {
|
|
|
4364
4364
|
}
|
|
4365
4365
|
}
|
|
4366
4366
|
if (documents.length === 0) return null;
|
|
4367
|
-
return /* @__PURE__ */ jsx59("div", { className: "
|
|
4367
|
+
return /* @__PURE__ */ jsx59("div", { className: "", children: documents.map((doc, index) => {
|
|
4368
4368
|
const documentUrl = AssetUtility_default.resolveUrl(
|
|
4369
4369
|
props.assetBaseUrl,
|
|
4370
4370
|
doc.assetUrl
|
|
@@ -4385,13 +4385,13 @@ var DocumentNode = (props) => {
|
|
|
4385
4385
|
return /* @__PURE__ */ jsxs32(
|
|
4386
4386
|
"div",
|
|
4387
4387
|
{
|
|
4388
|
-
className: "flex items-center justify-between py-4 bg-default",
|
|
4388
|
+
className: "flex items-center justify-between py-4 bg-default border-t first:border-t-0 gap-4",
|
|
4389
4389
|
children: [
|
|
4390
4390
|
/* @__PURE__ */ jsxs32("div", { className: "flex items-center space-x-4", children: [
|
|
4391
4391
|
/* @__PURE__ */ jsx59("div", { className: "flex items-center justify-center p-2 rounded bg-neutral-soft", children: /* @__PURE__ */ jsx59(Icon2, {}) }),
|
|
4392
4392
|
/* @__PURE__ */ jsxs32("div", { className: "flex items-baseline space-x-2", children: [
|
|
4393
4393
|
/* @__PURE__ */ jsx59("h4", { className: "text-base font-semibold", children: documentTitle }),
|
|
4394
|
-
/* @__PURE__ */ jsxs32("span", { className: "text-
|
|
4394
|
+
/* @__PURE__ */ jsxs32("span", { className: "text-xs font-semibold uppercase", children: [
|
|
4395
4395
|
"(",
|
|
4396
4396
|
extLabel,
|
|
4397
4397
|
")"
|
package/package.json
CHANGED