@acoustte-digital-services/digitalstore-controls-dev 0.8.1-dev.20260605114817 → 0.8.1-dev.20260605123150
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 -2
- package/dist/index.mjs +3 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -5787,7 +5787,8 @@ var DivContainer = async (props) => {
|
|
|
5787
5787
|
const classNames = [
|
|
5788
5788
|
containerPaddingClass,
|
|
5789
5789
|
props.node.autoFormat && "auto-format",
|
|
5790
|
-
props.node.bgClass
|
|
5790
|
+
props.node.bgClass,
|
|
5791
|
+
noLinkColor && "no-link-color"
|
|
5791
5792
|
].filter(Boolean).join(" ");
|
|
5792
5793
|
return /* @__PURE__ */ (0, import_jsx_runtime70.jsxs)(import_react50.default.Fragment, { children: [
|
|
5793
5794
|
/* @__PURE__ */ (0, import_jsx_runtime70.jsx)("style", { dangerouslySetInnerHTML: { __html: cssResult.css + animationCSS } }),
|
|
@@ -5796,7 +5797,7 @@ var DivContainer = async (props) => {
|
|
|
5796
5797
|
{
|
|
5797
5798
|
id: guid,
|
|
5798
5799
|
style: combinedStyles,
|
|
5799
|
-
className: classNames ||
|
|
5800
|
+
className: classNames || void 0,
|
|
5800
5801
|
...wrapperProps,
|
|
5801
5802
|
children: dataToRender.map(
|
|
5802
5803
|
(item, idx) => item?.links?.view && renderLink ? renderChildren(props.node.children, props, item, idx, props.href ? void 0 : item?.links?.view)?.map(
|
package/dist/index.mjs
CHANGED
|
@@ -4181,7 +4181,8 @@ var DivContainer = async (props) => {
|
|
|
4181
4181
|
const classNames = [
|
|
4182
4182
|
containerPaddingClass,
|
|
4183
4183
|
props.node.autoFormat && "auto-format",
|
|
4184
|
-
props.node.bgClass
|
|
4184
|
+
props.node.bgClass,
|
|
4185
|
+
noLinkColor && "no-link-color"
|
|
4185
4186
|
].filter(Boolean).join(" ");
|
|
4186
4187
|
return /* @__PURE__ */ jsxs32(React41.Fragment, { children: [
|
|
4187
4188
|
/* @__PURE__ */ jsx59("style", { dangerouslySetInnerHTML: { __html: cssResult.css + animationCSS } }),
|
|
@@ -4190,7 +4191,7 @@ var DivContainer = async (props) => {
|
|
|
4190
4191
|
{
|
|
4191
4192
|
id: guid,
|
|
4192
4193
|
style: combinedStyles,
|
|
4193
|
-
className: classNames ||
|
|
4194
|
+
className: classNames || void 0,
|
|
4194
4195
|
...wrapperProps,
|
|
4195
4196
|
children: dataToRender.map(
|
|
4196
4197
|
(item, idx) => item?.links?.view && renderLink ? renderChildren(props.node.children, props, item, idx, props.href ? void 0 : item?.links?.view)?.map(
|
package/package.json
CHANGED