@acoustte-digital-services/digitalstore-controls-dev 0.8.1-dev.20260323111546 → 0.8.1-dev.20260323121228
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 +1 -7
- package/dist/index.mjs +1 -7
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -2780,13 +2780,7 @@ var DatafieldNode = (props) => {
|
|
|
2780
2780
|
{
|
|
2781
2781
|
className: `datafield-node ${props.node.format < Formats.length ? Formats[props.node.format] : ""}`,
|
|
2782
2782
|
style: styles,
|
|
2783
|
-
children:
|
|
2784
|
-
ViewControl_default,
|
|
2785
|
-
{
|
|
2786
|
-
controlType: dataType,
|
|
2787
|
-
value: value ?? `@databound[${fieldName}]`
|
|
2788
|
-
}
|
|
2789
|
-
)
|
|
2783
|
+
children: String(value)
|
|
2790
2784
|
}
|
|
2791
2785
|
);
|
|
2792
2786
|
};
|
package/dist/index.mjs
CHANGED
|
@@ -2748,13 +2748,7 @@ var DatafieldNode = (props) => {
|
|
|
2748
2748
|
{
|
|
2749
2749
|
className: `datafield-node ${props.node.format < Formats.length ? Formats[props.node.format] : ""}`,
|
|
2750
2750
|
style: styles,
|
|
2751
|
-
children:
|
|
2752
|
-
ViewControl_default,
|
|
2753
|
-
{
|
|
2754
|
-
controlType: dataType,
|
|
2755
|
-
value: value ?? `@databound[${fieldName}]`
|
|
2756
|
-
}
|
|
2757
|
-
)
|
|
2751
|
+
children: String(value)
|
|
2758
2752
|
}
|
|
2759
2753
|
);
|
|
2760
2754
|
};
|
package/package.json
CHANGED