dynamic-mui 1.0.11 → 1.0.12
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-modules/components/controls/Select/select.js +14 -6
- package/dist-modules/util/helper.js +6 -3
- package/docs/asset-manifest.json +5 -5
- package/docs/build/2.c7ab203b.js +2 -0
- package/docs/build/main.125a1037.js +1 -0
- package/docs/index.html +2 -2
- package/package.json +1 -1
- package/docs/build/2.162bc6e1.js +0 -2
- package/docs/build/main.b248710d.js +0 -1
- /package/docs/build/{2.162bc6e1.js.LICENSE.txt → 2.c7ab203b.js.LICENSE.txt} +0 -0
|
@@ -33,9 +33,17 @@ var icon = /*#__PURE__*/_react.default.createElement(_CheckBoxOutlineBlank.defau
|
|
|
33
33
|
var checkedIcon = /*#__PURE__*/_react.default.createElement(_CheckBox.default, {
|
|
34
34
|
fontSize: "small"
|
|
35
35
|
});
|
|
36
|
-
function
|
|
37
|
-
var
|
|
38
|
-
|
|
36
|
+
var getValue = function getValue() {
|
|
37
|
+
var options = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : [];
|
|
38
|
+
var defaultValue = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : '';
|
|
39
|
+
return options.find(function (_ref) {
|
|
40
|
+
var value = _ref.value;
|
|
41
|
+
return defaultValue === value;
|
|
42
|
+
});
|
|
43
|
+
};
|
|
44
|
+
function Select(_ref2) {
|
|
45
|
+
var attributes = _ref2.attributes,
|
|
46
|
+
onChange = _ref2.onChange;
|
|
39
47
|
var _attributes$MuiAttrib = attributes.MuiAttributes,
|
|
40
48
|
MuiAttributes = _attributes$MuiAttrib === void 0 ? {} : _attributes$MuiAttrib,
|
|
41
49
|
_attributes$options = attributes.options,
|
|
@@ -44,7 +52,7 @@ function Select(_ref) {
|
|
|
44
52
|
MuiBoxAttributes = _attributes$MuiBoxAtt === void 0 ? {} : _attributes$MuiBoxAtt,
|
|
45
53
|
_attributes$id = attributes.id,
|
|
46
54
|
id = _attributes$id === void 0 ? '' : _attributes$id;
|
|
47
|
-
var _React$useState = _react.default.useState(),
|
|
55
|
+
var _React$useState = _react.default.useState((attributes === null || attributes === void 0 ? void 0 : attributes.value) && getValue(options, attributes === null || attributes === void 0 ? void 0 : attributes.value)),
|
|
48
56
|
_React$useState2 = _slicedToArray(_React$useState, 2),
|
|
49
57
|
value = _React$useState2[0],
|
|
50
58
|
setValue = _React$useState2[1];
|
|
@@ -56,8 +64,8 @@ function Select(_ref) {
|
|
|
56
64
|
if (MuiAttributes.multiple) {
|
|
57
65
|
MuiAttributes.renderOption = function (props) {
|
|
58
66
|
var option = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
|
|
59
|
-
var
|
|
60
|
-
selected =
|
|
67
|
+
var _ref3 = arguments.length > 2 ? arguments[2] : undefined,
|
|
68
|
+
selected = _ref3.selected;
|
|
61
69
|
return /*#__PURE__*/_react.default.createElement("li", props, /*#__PURE__*/_react.default.createElement(_Checkbox.default, {
|
|
62
70
|
icon: icon,
|
|
63
71
|
checkedIcon: checkedIcon,
|
|
@@ -11,6 +11,7 @@ var _lodash = require("lodash");
|
|
|
11
11
|
var _isEmpty = _interopRequireDefault(require("lodash/isEmpty"));
|
|
12
12
|
var _material = require("@mui/material");
|
|
13
13
|
var _xDatePickers = require("@mui/x-date-pickers");
|
|
14
|
+
var _react = _interopRequireDefault(require("react"));
|
|
14
15
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
15
16
|
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
|
|
16
17
|
function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
|
@@ -59,7 +60,7 @@ function getInputProps(InputProps) {
|
|
|
59
60
|
text = InputProps.text,
|
|
60
61
|
_InputProps$textstyle = InputProps.textstyle,
|
|
61
62
|
textstyle = _InputProps$textstyle === void 0 ? {} : _InputProps$textstyle;
|
|
62
|
-
return _defineProperty({}, "".concat(position, "Adornment"), /*#__PURE__*/
|
|
63
|
+
return _defineProperty({}, "".concat(position, "Adornment"), /*#__PURE__*/_react.default.createElement(_material.InputAdornment, MuiInputAdornment, icon && /*#__PURE__*/_react.default.createElement(_material.Icon, null, icon), !(0, _isEmpty.default)(textstyle) ? /*#__PURE__*/_react.default.createElement("div", {
|
|
63
64
|
style: textstyle
|
|
64
65
|
}, text || '') : text || ''));
|
|
65
66
|
}
|
|
@@ -77,9 +78,11 @@ var updatePatchData = exports.updatePatchData = function updatePatchData(fields,
|
|
|
77
78
|
var formData = Object.assign([], fields);
|
|
78
79
|
// if (isEmpty(patch)) return fields;
|
|
79
80
|
return (0, _lodash.map)(formData, function (field) {
|
|
81
|
+
var _newField$props;
|
|
80
82
|
var newField = _objectSpread({}, field);
|
|
81
|
-
|
|
82
|
-
|
|
83
|
+
var id = (newField === null || newField === void 0 ? void 0 : newField.id) || (newField === null || newField === void 0 || (_newField$props = newField.props) === null || _newField$props === void 0 ? void 0 : _newField$props.id);
|
|
84
|
+
if (id && response[guid][id]) {
|
|
85
|
+
newField.props.value = response[guid][id] || '';
|
|
83
86
|
}
|
|
84
87
|
return newField;
|
|
85
88
|
});
|
package/docs/asset-manifest.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"files": {
|
|
3
|
-
"main.js": "/DinakaranS/-dynamic-mui/build/main.
|
|
3
|
+
"main.js": "/DinakaranS/-dynamic-mui/build/main.125a1037.js",
|
|
4
4
|
"runtime-main.js": "/DinakaranS/-dynamic-mui/build/bundle.039d7aef.js",
|
|
5
|
-
"build/2.
|
|
6
|
-
"build/2.
|
|
5
|
+
"build/2.c7ab203b.js": "/DinakaranS/-dynamic-mui/build/2.c7ab203b.js",
|
|
6
|
+
"build/2.c7ab203b.js.LICENSE.txt": "/DinakaranS/-dynamic-mui/build/2.c7ab203b.js.LICENSE.txt",
|
|
7
7
|
"index.html": "/DinakaranS/-dynamic-mui/index.html"
|
|
8
8
|
},
|
|
9
9
|
"entrypoints": [
|
|
10
10
|
"build/bundle.039d7aef.js",
|
|
11
|
-
"build/2.
|
|
12
|
-
"build/main.
|
|
11
|
+
"build/2.c7ab203b.js",
|
|
12
|
+
"build/main.125a1037.js"
|
|
13
13
|
]
|
|
14
14
|
}
|