@esvndev/es-react-config-setting 1.0.51 → 1.0.53
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 +15 -15
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +15 -15
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -18848,10 +18848,10 @@ const SettingApp = (props) => {
|
|
|
18848
18848
|
const handleFormClosed = () => {
|
|
18849
18849
|
};
|
|
18850
18850
|
//Sự kiện giá trị thay đổi
|
|
18851
|
-
const _eventChange = (
|
|
18851
|
+
const _eventChange = (obj, data) => {
|
|
18852
18852
|
if (data.target) {
|
|
18853
18853
|
var _value = "";
|
|
18854
|
-
if (
|
|
18854
|
+
if (obj.type === 'checkbox') {
|
|
18855
18855
|
_value = data.target.checked ? 'true' : 'false';
|
|
18856
18856
|
}
|
|
18857
18857
|
else {
|
|
@@ -18859,14 +18859,14 @@ const SettingApp = (props) => {
|
|
|
18859
18859
|
}
|
|
18860
18860
|
UpdateSettingConfig({
|
|
18861
18861
|
Items: [{
|
|
18862
|
-
Key: key,
|
|
18862
|
+
Key: obj.key,
|
|
18863
18863
|
Value: _value
|
|
18864
18864
|
}]
|
|
18865
18865
|
}, null, (rs) => {
|
|
18866
18866
|
console.log(rs);
|
|
18867
18867
|
});
|
|
18868
18868
|
if (eventChange)
|
|
18869
|
-
eventChange([{ key:
|
|
18869
|
+
eventChange([{ key: obj.key, value: _value, state: "update" }]);
|
|
18870
18870
|
}
|
|
18871
18871
|
};
|
|
18872
18872
|
const DynamicIcon = ({ name, className }) => {
|
|
@@ -18918,31 +18918,31 @@ const SettingApp = (props) => {
|
|
|
18918
18918
|
switch (data.type) {
|
|
18919
18919
|
case "switch":
|
|
18920
18920
|
case "checkbox":
|
|
18921
|
-
return (jsxRuntime.jsx("div", { className: "checkbox", title: data.description, children: jsxRuntime.jsx(Input$1, { type: "checkbox", className: "", onChange: (e) => _eventChange(data, e) }) }, data.id));
|
|
18921
|
+
return (jsxRuntime.jsx("div", { className: "checkbox", title: data.description, children: jsxRuntime.jsx(Input$1, { type: "checkbox", className: "", onChange: (e) => _eventChange(data, e), value: data.value }) }, data.id));
|
|
18922
18922
|
case "radio":
|
|
18923
18923
|
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, onChange: (e) => _eventChange(data, e) }), opt.name] }, index))) }, data.id));
|
|
18924
18924
|
case "combobox":
|
|
18925
|
-
return (jsxRuntime.jsx("div", { className: "combobox", title: data.description, children: jsxRuntime.jsxs(Input$1, { type: "select", className: "input-custom", name: data.name, id: data.name, onChange: (e) => _eventChange(data, e), children: [jsxRuntime.jsx("option", { value: "", children: "Ch\u1ECDn m\u1ED9t gi\u00E1 tr\u1ECB" }), data.option?.map((opt, index) => (jsxRuntime.jsx("option", { value: opt.value, children: opt.name }, index)))] }) }, data.id));
|
|
18925
|
+
return (jsxRuntime.jsx("div", { className: "combobox", title: data.description, children: jsxRuntime.jsxs(Input$1, { type: "select", className: "input-custom", name: data.name, value: data.value, id: data.name, onChange: (e) => _eventChange(data, e), children: [jsxRuntime.jsx("option", { value: "", children: "Ch\u1ECDn m\u1ED9t gi\u00E1 tr\u1ECB" }), data.option?.map((opt, index) => (jsxRuntime.jsx("option", { value: opt.value, children: opt.name }, index)))] }) }, data.id));
|
|
18926
18926
|
case "slider":
|
|
18927
18927
|
case "text":
|
|
18928
|
-
return (jsxRuntime.jsx("div", { className: "text-input", title: data.description, children: jsxRuntime.jsx(Input$1, { type: "text", className: "input-custom", placeholder: data.name, onChange: (e) => _eventChange(data, e) }) }, data.id));
|
|
18928
|
+
return (jsxRuntime.jsx("div", { className: "text-input", title: data.description, children: jsxRuntime.jsx(Input$1, { type: "text", className: "input-custom", value: data.value, placeholder: data.name, onChange: (e) => _eventChange(data, e) }) }, data.id));
|
|
18929
18929
|
case "password":
|
|
18930
|
-
return (jsxRuntime.jsx("div", { className: "text-input", title: data.description, children: jsxRuntime.jsx(Input$1, { type: "password", className: "input-custom", placeholder: data.name, onChange: (e) => _eventChange(data, e) }) }, data.id));
|
|
18930
|
+
return (jsxRuntime.jsx("div", { className: "text-input", title: data.description, children: jsxRuntime.jsx(Input$1, { type: "password", className: "input-custom", value: data.value, placeholder: data.name, onChange: (e) => _eventChange(data, e) }) }, data.id));
|
|
18931
18931
|
case "number":
|
|
18932
|
-
return (jsxRuntime.jsx("div", { className: "number-input", title: data.description, children: jsxRuntime.jsx(Input$1, { type: "number", className: "t-right input-custom", placeholder: data.name, onChange: (e) => _eventChange(data, e) }) }, data.id));
|
|
18932
|
+
return (jsxRuntime.jsx("div", { className: "number-input", title: data.description, children: jsxRuntime.jsx(Input$1, { type: "number", className: "t-right input-custom", value: data.value, placeholder: data.name, onChange: (e) => _eventChange(data, e) }) }, data.id));
|
|
18933
18933
|
case "date":
|
|
18934
|
-
return (jsxRuntime.jsx("div", { className: "date-input", title: data.description, children: jsxRuntime.jsx(Input$1, { type: "date", className: "t-right input-custom", onChange: (e) => _eventChange(data, e) }) }, data.id));
|
|
18934
|
+
return (jsxRuntime.jsx("div", { className: "date-input", title: data.description, children: jsxRuntime.jsx(Input$1, { type: "date", className: "t-right input-custom", value: data.value, onChange: (e) => _eventChange(data, e) }) }, data.id));
|
|
18935
18935
|
case "time":
|
|
18936
|
-
return (jsxRuntime.jsx("div", { className: "date-input", title: data.description, children: jsxRuntime.jsx(Input$1, { type: "time", className: "t-right input-custom", onChange: (e) => _eventChange(data, e) }) }, data.id));
|
|
18936
|
+
return (jsxRuntime.jsx("div", { className: "date-input", title: data.description, children: jsxRuntime.jsx(Input$1, { type: "time", className: "t-right input-custom", value: data.value, onChange: (e) => _eventChange(data, e) }) }, data.id));
|
|
18937
18937
|
case "datetime":
|
|
18938
|
-
return (jsxRuntime.jsx("div", { className: "date-input", title: data.description, children: jsxRuntime.jsx(Input$1, { type: "datetime", className: "t-right input-custom", onChange: (e) => _eventChange(data, e) }) }, data.id));
|
|
18938
|
+
return (jsxRuntime.jsx("div", { className: "date-input", title: data.description, children: jsxRuntime.jsx(Input$1, { type: "datetime", className: "t-right input-custom", value: data.value, onChange: (e) => _eventChange(data, e) }) }, data.id));
|
|
18939
18939
|
case "image":
|
|
18940
18940
|
case "file":
|
|
18941
|
-
return (jsxRuntime.jsx("div", { className: "file-input", title: data.description, children: jsxRuntime.jsx(Input$1, { type: "file", className: "input-custom", onChange: (e) => _eventChange(data, e) }) }, data.id));
|
|
18941
|
+
return (jsxRuntime.jsx("div", { className: "file-input", title: data.description, children: jsxRuntime.jsx(Input$1, { type: "file", className: "input-custom", value: data.value, onChange: (e) => _eventChange(data, e) }) }, data.id));
|
|
18942
18942
|
case "color":
|
|
18943
|
-
return (jsxRuntime.jsx("div", { className: "color-picker t-right", title: data.description, children: jsxRuntime.jsx(Input$1, { type: "color", className: "form-color input-custom", onChange: (e) => _eventChange(data, e) }) }, data.id));
|
|
18943
|
+
return (jsxRuntime.jsx("div", { className: "color-picker t-right", title: data.description, children: jsxRuntime.jsx(Input$1, { type: "color", className: "form-color input-custom", value: data.value, onChange: (e) => _eventChange(data, e) }) }, data.id));
|
|
18944
18944
|
default:
|
|
18945
|
-
return (jsxRuntime.jsx("div", { className: (data.type ?? 'normal') + '-input', title: data.description, children: jsxRuntime.jsx(Input$1, { type: data.type ?? '', onChange: (e) => _eventChange(data, e) }) }, data.id));
|
|
18945
|
+
return (jsxRuntime.jsx("div", { className: (data.type ?? 'normal') + '-input', title: data.description, children: jsxRuntime.jsx(Input$1, { type: data.type ?? '', value: data.value, onChange: (e) => _eventChange(data, e) }) }, data.id));
|
|
18946
18946
|
}
|
|
18947
18947
|
};
|
|
18948
18948
|
//hàm tạo các thông số cấu hình và cài đặt
|