@acoustte-digital-services/digitalstore-controls-dev 0.8.1-dev.20260326053312 → 0.8.1-dev.20260326054115
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 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -568,7 +568,7 @@ var ViewControl = import_react11.default.forwardRef(
|
|
|
568
568
|
// [ViewControlTypes.booleanView]: BooleanView
|
|
569
569
|
};
|
|
570
570
|
const SelectedControlComponent = props.controlType ? ControlComponents[props.controlType] : void 0;
|
|
571
|
-
return /* @__PURE__ */ (0, import_jsx_runtime11.jsx)(import_react11.default.Fragment, { children: SelectedControlComponent ? /* @__PURE__ */ (0, import_jsx_runtime11.jsx)(SelectedControlComponent, { ...props }) : "Control not found" });
|
|
571
|
+
return /* @__PURE__ */ (0, import_jsx_runtime11.jsx)(import_react11.default.Fragment, { children: SelectedControlComponent ? /* @__PURE__ */ (0, import_jsx_runtime11.jsx)(SelectedControlComponent, { ...props }) : "Control not found:" + props.controlType });
|
|
572
572
|
}
|
|
573
573
|
);
|
|
574
574
|
ViewControl.displayName = "ViewControl";
|
package/dist/index.mjs
CHANGED
|
@@ -217,7 +217,7 @@ var ViewControl = React11.forwardRef(
|
|
|
217
217
|
// [ViewControlTypes.booleanView]: BooleanView
|
|
218
218
|
};
|
|
219
219
|
const SelectedControlComponent = props.controlType ? ControlComponents[props.controlType] : void 0;
|
|
220
|
-
return /* @__PURE__ */ jsx11(React11.Fragment, { children: SelectedControlComponent ? /* @__PURE__ */ jsx11(SelectedControlComponent, { ...props }) : "Control not found" });
|
|
220
|
+
return /* @__PURE__ */ jsx11(React11.Fragment, { children: SelectedControlComponent ? /* @__PURE__ */ jsx11(SelectedControlComponent, { ...props }) : "Control not found:" + props.controlType });
|
|
221
221
|
}
|
|
222
222
|
);
|
|
223
223
|
ViewControl.displayName = "ViewControl";
|
package/package.json
CHANGED