@esvndev/es-react-config-setting 1.0.29 → 1.0.30

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 CHANGED
@@ -11777,9 +11777,10 @@ const SettingApp = (props) => {
11777
11777
  };
11778
11778
  //Hàm sử dụng tạo theo loại giá trị
11779
11779
  const _renderInput = (root, data) => {
11780
+ console.log((new Date()).getTime(), 111);
11780
11781
  switch (data.type) {
11781
11782
  case "checkbox":
11782
- return (jsxRuntime.jsx("div", { className: "checkbox", title: data.description, children: jsxRuntime.jsx(Input$1, { type: "checkbox" }) }));
11783
+ return (jsxRuntime.jsx("div", { className: "checkbox", title: data.description, children: jsxRuntime.jsx(Input$1, { type: "checkbox" }, "") }));
11783
11784
  case "radio":
11784
11785
  return (jsxRuntime.jsx("div", { className: "radio-group", title: data.description, children: data.option?.map((opt, index) => (jsxRuntime.jsxs("label", { children: [jsxRuntime.jsx(Input$1, { type: "radio", name: data.name, value: opt.value }), opt.name] }, index))) }));
11785
11786
  case "combobox":