@acoustte-digital-services/digitalstore-controls-dev 0.8.1-dev.20260623115046 → 0.8.1-dev.20260623120005
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 +4 -1
- package/dist/index.mjs +4 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -6108,6 +6108,10 @@ var getFileDetails = (url) => {
|
|
|
6108
6108
|
return { Icon: Icon2, extLabel };
|
|
6109
6109
|
};
|
|
6110
6110
|
var DocumentNode = (props) => {
|
|
6111
|
+
console.log("DocumentNode rendered");
|
|
6112
|
+
console.log("props", props);
|
|
6113
|
+
console.log("dataitem", props.dataitem);
|
|
6114
|
+
console.log("node", props.node);
|
|
6111
6115
|
let documentUrl;
|
|
6112
6116
|
let documentTitle;
|
|
6113
6117
|
if (props.dataitem && props.node.documentKey) {
|
|
@@ -6141,7 +6145,6 @@ var DocumentNode = (props) => {
|
|
|
6141
6145
|
}
|
|
6142
6146
|
}
|
|
6143
6147
|
}
|
|
6144
|
-
console.log(documentUrl, "djndvbkhdbvdkvnkjdfn");
|
|
6145
6148
|
if (!documentUrl) return null;
|
|
6146
6149
|
const { Icon: Icon2, extLabel } = getFileDetails(documentUrl);
|
|
6147
6150
|
if (!documentTitle) {
|
package/dist/index.mjs
CHANGED
|
@@ -4502,6 +4502,10 @@ var getFileDetails = (url) => {
|
|
|
4502
4502
|
return { Icon: Icon2, extLabel };
|
|
4503
4503
|
};
|
|
4504
4504
|
var DocumentNode = (props) => {
|
|
4505
|
+
console.log("DocumentNode rendered");
|
|
4506
|
+
console.log("props", props);
|
|
4507
|
+
console.log("dataitem", props.dataitem);
|
|
4508
|
+
console.log("node", props.node);
|
|
4505
4509
|
let documentUrl;
|
|
4506
4510
|
let documentTitle;
|
|
4507
4511
|
if (props.dataitem && props.node.documentKey) {
|
|
@@ -4535,7 +4539,6 @@ var DocumentNode = (props) => {
|
|
|
4535
4539
|
}
|
|
4536
4540
|
}
|
|
4537
4541
|
}
|
|
4538
|
-
console.log(documentUrl, "djndvbkhdbvdkvnkjdfn");
|
|
4539
4542
|
if (!documentUrl) return null;
|
|
4540
4543
|
const { Icon: Icon2, extLabel } = getFileDetails(documentUrl);
|
|
4541
4544
|
if (!documentTitle) {
|
package/package.json
CHANGED