@esvndev/es-react-config-setting 1.0.21 → 1.0.22

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.mjs CHANGED
@@ -11485,12 +11485,12 @@ const SettingApp = (props) => {
11485
11485
  //hàm tạo các thông số cấu hình và cài đặt
11486
11486
  const _renderView = () => {
11487
11487
  return (settingData && settingData.data && settingData.data.length > 0 ? settingData.data.map((item, index) => {
11488
- jsxs("div", { className: "setting-section", children: [jsx("div", { className: "setting-section-label", children: jsx("div", { className: "badge", children: jsx("span", { children: item.name }) }) }), item.desrciption ?
11488
+ return (jsxs("div", { className: "setting-section", children: [jsx("div", { className: "setting-section-label", children: jsx("div", { className: "badge", children: jsx("span", { children: item.name }) }) }), item.desrciption ?
11489
11489
  jsx("div", { className: "setting-section-desc", children: jsx("div", { className: "", children: jsx("span", { children: item.desrciption }) }) })
11490
11490
  : null, item.data && item.data.length > 0 ? item.data.map((_item, _index) => {
11491
11491
  return (jsx("div", { className: "setting-section-content ", children: jsxs("div", { className: 'flx flx-al-c flx-sp-btw setting-section-content__item' + (_index === 0 ? 'first' : (_index === _item.data.length - 1 ? 'last' : '')), children: [jsxs("div", { className: "flx flx-col", style: { flex: "0 0 fit-content" }, children: [jsx("span", { children: _item.name }), jsx("span", { className: "setting-section-content__description", children: _item.description })] }), jsx("div", { style: { maxWidth: "50%" }, children: jsx("div", { style: { width: "100%", boxSizing: "border-box" }, children: jsxs("div", { className: "flx flx-al-c z-dropdown-preview --square --l", style: { width: "100%", boxSizing: "border-box" }, children: [jsx("div", { className: "truncate flx-1" }), jsx("i", { className: "fa fa-Chevron_Down_24_Line margin-left-24" })] }) }) })] }) }));
11492
11492
  })
11493
- : null] });
11493
+ : null] }));
11494
11494
  })
11495
11495
  : null);
11496
11496
  };