@zohodesk/dot 1.4.9 → 1.4.11

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.
Files changed (79) hide show
  1. package/.cli/UnValidatedFiles.html +101 -0
  2. package/.cli/propValidation_report.html +1 -1
  3. package/README.md +10 -1
  4. package/coverage/ExternalLink/ExternalLink.js.html +1 -1
  5. package/coverage/ExternalLink/ExternalLink.module.css.html +1 -1
  6. package/coverage/ExternalLink/index.html +1 -1
  7. package/coverage/ExternalLink/props/defaultProps.js.html +1 -1
  8. package/coverage/ExternalLink/props/index.html +1 -1
  9. package/coverage/ExternalLink/props/propTypes.js.html +1 -1
  10. package/coverage/IconButton/IconButton.js.html +1 -1
  11. package/coverage/IconButton/IconButton.module.css.html +1 -1
  12. package/coverage/IconButton/index.html +1 -1
  13. package/coverage/IconButton/props/defaultProps.js.html +1 -1
  14. package/coverage/IconButton/props/index.html +1 -1
  15. package/coverage/IconButton/props/propTypes.js.html +1 -1
  16. package/coverage/Image/Image.js.html +1 -1
  17. package/coverage/Image/Image.module.css.html +1 -1
  18. package/coverage/Image/index.html +1 -1
  19. package/coverage/Image/props/defaultProps.js.html +1 -1
  20. package/coverage/Image/props/index.html +1 -1
  21. package/coverage/Image/props/propTypes.js.html +1 -1
  22. package/coverage/avatar/AvatarWithTeam/AvatarWithTeam.js.html +1 -1
  23. package/coverage/avatar/AvatarWithTeam/AvatarWithTeam.module.css.html +1 -1
  24. package/coverage/avatar/AvatarWithTeam/index.html +1 -1
  25. package/coverage/avatar/AvatarWithTeam/props/defaultProps.js.html +1 -1
  26. package/coverage/avatar/AvatarWithTeam/props/index.html +1 -1
  27. package/coverage/avatar/AvatarWithTeam/props/propTypes.js.html +1 -1
  28. package/coverage/index.html +1 -1
  29. package/es/NewStar/NewStar.module.css +128 -67
  30. package/es/form/fields/TagsMultiSelect/TagsMultiSelect.js +4 -4
  31. package/es/form/fields/TagsMultiSelect/TagsMultiSelect.module.css +9 -0
  32. package/es/form/fields/TagsMultiSelectField/TagsMultiSelectField.js +9 -2
  33. package/es/form/fields/TagsMultiSelectField/props/defaultProps.js +3 -1
  34. package/es/form/fields/TagsMultiSelectField/props/propTypes.js +5 -1
  35. package/es/form/fields/TextEditor/TextEditor.module.css +63 -47
  36. package/es/v1/form/fields/SelectField/SelectField.js +1 -9
  37. package/es/v1/form/fields/TagsMultiSelect/TagsMultiSelect.js +42 -13
  38. package/es/v1/form/fields/TagsMultiSelect/props/defaultProps.js +4 -1
  39. package/es/v1/form/fields/TagsMultiSelect/props/propTypes.js +10 -1
  40. package/es/v1/form/fields/TagsMultiSelectField/TagsMultiSelectField.js +9 -2
  41. package/es/v1/form/fields/TagsMultiSelectField/props/defaultProps.js +3 -1
  42. package/es/v1/form/fields/TagsMultiSelectField/props/propTypes.js +5 -1
  43. package/es/v1/form/fields/TextBoxField/TextBoxField.js +122 -142
  44. package/es/v1/form/fields/TextEditorField/TextEditorField.js +133 -153
  45. package/es/v1/form/fields/TextEditorWrapper/TextEditorWrapper.js +137 -178
  46. package/es/v1/form/fields/TextareaField/TextareaField.js +113 -137
  47. package/es/v1/form/fields/ValidationMessage/ValidationMessage.js +43 -43
  48. package/es/v1/form/layout/Field/Field.js +24 -28
  49. package/es/v1/form/layout/Section/Section.js +26 -33
  50. package/es/v1/list/Subject/Subject.js +39 -48
  51. package/es/v1/list/TagNew/TagNew.js +18 -27
  52. package/es/v1/list/Thread/Thread.js +26 -35
  53. package/lib/NewStar/NewStar.module.css +128 -67
  54. package/lib/form/fields/TagsMultiSelect/TagsMultiSelect.js +5 -5
  55. package/lib/form/fields/TagsMultiSelect/TagsMultiSelect.module.css +9 -0
  56. package/lib/form/fields/TagsMultiSelectField/TagsMultiSelectField.js +9 -2
  57. package/lib/form/fields/TagsMultiSelectField/props/defaultProps.js +3 -1
  58. package/lib/form/fields/TagsMultiSelectField/props/propTypes.js +5 -1
  59. package/lib/form/fields/TextEditor/TextEditor.module.css +63 -47
  60. package/lib/v1/form/fields/SelectField/SelectField.js +1 -7
  61. package/lib/v1/form/fields/TagsMultiSelect/TagsMultiSelect.js +45 -13
  62. package/lib/v1/form/fields/TagsMultiSelect/props/defaultProps.js +4 -1
  63. package/lib/v1/form/fields/TagsMultiSelect/props/propTypes.js +10 -1
  64. package/lib/v1/form/fields/TagsMultiSelectField/TagsMultiSelectField.js +9 -2
  65. package/lib/v1/form/fields/TagsMultiSelectField/props/defaultProps.js +3 -1
  66. package/lib/v1/form/fields/TagsMultiSelectField/props/propTypes.js +5 -1
  67. package/lib/v1/form/fields/TextBoxField/TextBoxField.js +125 -181
  68. package/lib/v1/form/fields/TextEditorField/TextEditorField.js +138 -193
  69. package/lib/v1/form/fields/TextEditorWrapper/TextEditorWrapper.js +160 -212
  70. package/lib/v1/form/fields/TextareaField/TextareaField.js +117 -177
  71. package/lib/v1/form/fields/ValidationMessage/ValidationMessage.js +41 -80
  72. package/lib/v1/form/layout/Field/Field.js +22 -69
  73. package/lib/v1/form/layout/Section/Section.js +26 -72
  74. package/lib/v1/list/Subject/Subject.js +39 -87
  75. package/lib/v1/list/TagNew/TagNew.js +18 -66
  76. package/lib/v1/list/Thread/Thread.js +25 -73
  77. package/package.json +10 -10
  78. package/propValidationArg.json +8 -4
  79. package/result.json +1 -1
@@ -33,187 +33,131 @@ function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj &&
33
33
 
34
34
  function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
35
35
 
36
- function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
37
-
38
- function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
39
-
40
- function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
41
-
42
- function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); Object.defineProperty(subClass, "prototype", { writable: false }); if (superClass) _setPrototypeOf(subClass, superClass); }
43
-
44
- function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
45
-
46
- function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }
47
-
48
- function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } else if (call !== void 0) { throw new TypeError("Derived constructors may only return object or undefined"); } return _assertThisInitialized(self); }
49
-
50
- function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
51
-
52
- function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }
53
-
54
- function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
55
-
56
- var TextBoxField = /*#__PURE__*/function (_PureComponent) {
57
- _inherits(TextBoxField, _PureComponent);
58
-
59
- var _super = _createSuper(TextBoxField);
60
-
61
- function TextBoxField(props) {
62
- var _this;
63
-
64
- _classCallCheck(this, TextBoxField);
65
-
66
- _this = _super.call(this, props);
67
- _this.handleChange = _this.handleChange.bind(_assertThisInitialized(_this));
68
- _this.handleGetRef = _this.handleGetRef.bind(_assertThisInitialized(_this)); // this.handleLabelClick = this.handleLabelClick.bind(this);
69
-
70
- _this.getNextId = (0, _IdProvider.getUniqueId)(_assertThisInitialized(_this));
71
- return _this;
72
- }
73
-
74
- _createClass(TextBoxField, [{
75
- key: "handleChange",
76
- value: function handleChange(value) {
77
- var _this$props = this.props,
78
- id = _this$props.id,
79
- onChange = _this$props.onChange;
80
- onChange && onChange(id, value);
36
+ var TextBoxField = function TextBoxField(props) {
37
+ var labelName = props.labelName,
38
+ id = props.id,
39
+ textBoxSize = props.textBoxSize,
40
+ textBoxVariant = props.textBoxVariant,
41
+ textBoxType = props.textBoxType,
42
+ isMandatory = props.isMandatory,
43
+ validationMessage = props.validationMessage,
44
+ validationPalette = props.validationPalette,
45
+ maxLength = props.maxLength,
46
+ isReadOnly = props.isReadOnly,
47
+ value = props.value,
48
+ errorType = props.errorType,
49
+ isDisabled = props.isDisabled,
50
+ title = props.title,
51
+ onBlur = props.onBlur,
52
+ dataId = props.dataId,
53
+ dataSelectorId = props.dataSelectorId,
54
+ validationRuleMessage = props.validationRuleMessage,
55
+ validationRulePalette = props.validationRulePalette,
56
+ onKeyDown = props.onKeyDown,
57
+ placeHolder = props.placeHolder,
58
+ infoText = props.infoText,
59
+ borderColor = props.borderColor,
60
+ fieldSize = props.fieldSize,
61
+ labelPalette = props.labelPalette,
62
+ labelCustomClass = props.labelCustomClass,
63
+ htmlId = props.htmlId,
64
+ lockedInfoText = props.lockedInfoText,
65
+ isLocked = props.isLocked,
66
+ needReadOnlyStyle = props.needReadOnlyStyle,
67
+ isClickable = props.isClickable,
68
+ onFocus = props.onFocus,
69
+ ePhiData = props.ePhiData,
70
+ children = props.children,
71
+ customProps = props.customProps,
72
+ renderLabelProps = props.renderLabelProps,
73
+ onChange = props.onChange,
74
+ getRef = props.getRef;
75
+ var _customProps$LabelPro = customProps.LabelProps,
76
+ LabelProps = _customProps$LabelPro === void 0 ? {} : _customProps$LabelPro,
77
+ _customProps$TextBoxI = customProps.TextBoxIconProps,
78
+ TextBoxIconProps = _customProps$TextBoxI === void 0 ? {} : _customProps$TextBoxI,
79
+ _customProps$Validati = customProps.ValidationMessageProps1,
80
+ ValidationMessageProps1 = _customProps$Validati === void 0 ? {} : _customProps$Validati,
81
+ _customProps$Validati2 = customProps.ValidationMessageProps2,
82
+ ValidationMessageProps2 = _customProps$Validati2 === void 0 ? {} : _customProps$Validati2;
83
+ var getNextId = (0, _IdProvider.useUniqueId)();
84
+ var uniqueId = htmlId ? htmlId : getNextId();
85
+
86
+ var handleChange = function handleChange(value) {
87
+ onChange && onChange(id, value);
88
+ };
89
+
90
+ var handleGetRef = function handleGetRef(el) {
91
+ getRef && getRef(el, id);
92
+ };
93
+
94
+ return /*#__PURE__*/_react["default"].createElement("div", {
95
+ className: "".concat(_FieldsModule["default"].container, " ").concat(isDisabled ? _FieldsModule["default"].disabled : isReadOnly ? _FieldsModule["default"].readonly : ''),
96
+ "data-title": isDisabled ? title : null,
97
+ "data-selector-id": dataSelectorId
98
+ }, labelName && /*#__PURE__*/_react["default"].createElement(_FieldContainer["default"], {
99
+ infoText: infoText,
100
+ isLocked: isLocked,
101
+ lockedInfoText: lockedInfoText,
102
+ ePhiData: ePhiData,
103
+ dataId: dataId,
104
+ renderProps: renderLabelProps
105
+ }, /*#__PURE__*/_react["default"].createElement(_Label["default"], _extends({
106
+ text: labelName,
107
+ size: fieldSize === 'small' ? 'small' : 'medium',
108
+ palette: isMandatory ? 'mandatory' : isDisabled ? 'primary' : labelPalette,
109
+ customClass: "".concat(_FieldsModule["default"].fieldLabel, " ").concat(labelCustomClass, " ").concat(isMandatory ? _FieldsModule["default"].labelMandatory : ''),
110
+ htmlFor: uniqueId,
111
+ dataId: isDisabled ? "".concat(dataId, "_label_disabled") : isMandatory ? "".concat(dataId, "_label_mandatory") : "".concat(dataId, "_label")
112
+ }, LabelProps, {
113
+ id: labelName
114
+ }))), /*#__PURE__*/_react["default"].createElement("div", {
115
+ className: "".concat(_FieldsModule["default"].fieldContainer, " ").concat(labelName ? _FieldsModule["default"]["fieldMargin_".concat(fieldSize)] : '')
116
+ }, /*#__PURE__*/_react["default"].createElement(_TextBoxIcon["default"], _extends({
117
+ htmlId: uniqueId,
118
+ id: id,
119
+ type: textBoxType,
120
+ variant: textBoxVariant,
121
+ size: fieldSize === 'medium' ? textBoxSize : 'xsmall',
122
+ maxLength: maxLength,
123
+ isReadOnly: isReadOnly,
124
+ inputRef: handleGetRef,
125
+ value: value,
126
+ onChange: handleChange,
127
+ dataId: dataId,
128
+ onBlur: onBlur,
129
+ onKeyDown: onKeyDown,
130
+ placeHolder: placeHolder,
131
+ borderColor: borderColor,
132
+ onFocus: onFocus,
133
+ isDisabled: isDisabled,
134
+ needEffect: isReadOnly || isDisabled ? false : true,
135
+ isClickable: isClickable,
136
+ needReadOnlyStyle: needReadOnlyStyle
137
+ }, TextBoxIconProps, {
138
+ a11y: {
139
+ ariaLabelledby: labelName
81
140
  }
82
- }, {
83
- key: "handleGetRef",
84
- value: function handleGetRef(el) {
85
- var _this$props2 = this.props,
86
- getRef = _this$props2.getRef,
87
- id = _this$props2.id;
88
- this.textBox = el;
89
- getRef && getRef(el, id);
90
- } // handleLabelClick() {
91
- // // let { isFocusOnLabelClick } = this.props;
92
- // // if (isFocusOnLabelClick && this.textBox && this.textBox.focus) {
93
- // // this.textBox.focus();
94
- // // }
95
- // }
96
-
97
- }, {
98
- key: "render",
99
- value: function render() {
100
- var _this$props3 = this.props,
101
- labelName = _this$props3.labelName,
102
- id = _this$props3.id,
103
- textBoxSize = _this$props3.textBoxSize,
104
- textBoxVariant = _this$props3.textBoxVariant,
105
- textBoxType = _this$props3.textBoxType,
106
- isMandatory = _this$props3.isMandatory,
107
- validationMessage = _this$props3.validationMessage,
108
- validationPalette = _this$props3.validationPalette,
109
- maxLength = _this$props3.maxLength,
110
- isReadOnly = _this$props3.isReadOnly,
111
- value = _this$props3.value,
112
- errorType = _this$props3.errorType,
113
- isDisabled = _this$props3.isDisabled,
114
- title = _this$props3.title,
115
- onBlur = _this$props3.onBlur,
116
- dataId = _this$props3.dataId,
117
- dataSelectorId = _this$props3.dataSelectorId,
118
- validationRuleMessage = _this$props3.validationRuleMessage,
119
- validationRulePalette = _this$props3.validationRulePalette,
120
- onKeyDown = _this$props3.onKeyDown,
121
- placeHolder = _this$props3.placeHolder,
122
- infoText = _this$props3.infoText,
123
- borderColor = _this$props3.borderColor,
124
- fieldSize = _this$props3.fieldSize,
125
- labelPalette = _this$props3.labelPalette,
126
- labelCustomClass = _this$props3.labelCustomClass,
127
- htmlId = _this$props3.htmlId,
128
- lockedInfoText = _this$props3.lockedInfoText,
129
- isLocked = _this$props3.isLocked,
130
- needReadOnlyStyle = _this$props3.needReadOnlyStyle,
131
- isClickable = _this$props3.isClickable,
132
- onFocus = _this$props3.onFocus,
133
- ePhiData = _this$props3.ePhiData,
134
- children = _this$props3.children,
135
- customProps = _this$props3.customProps,
136
- renderLabelProps = _this$props3.renderLabelProps;
137
- var _customProps$LabelPro = customProps.LabelProps,
138
- LabelProps = _customProps$LabelPro === void 0 ? {} : _customProps$LabelPro,
139
- _customProps$TextBoxI = customProps.TextBoxIconProps,
140
- TextBoxIconProps = _customProps$TextBoxI === void 0 ? {} : _customProps$TextBoxI,
141
- _customProps$Validati = customProps.ValidationMessageProps1,
142
- ValidationMessageProps1 = _customProps$Validati === void 0 ? {} : _customProps$Validati,
143
- _customProps$Validati2 = customProps.ValidationMessageProps2,
144
- ValidationMessageProps2 = _customProps$Validati2 === void 0 ? {} : _customProps$Validati2;
145
- var uniqueId = htmlId ? htmlId : this.getNextId();
146
- return /*#__PURE__*/_react["default"].createElement("div", {
147
- className: "".concat(_FieldsModule["default"].container, " ").concat(isDisabled ? _FieldsModule["default"].disabled : isReadOnly ? _FieldsModule["default"].readonly : ''),
148
- "data-title": isDisabled ? title : null,
149
- "data-selector-id": dataSelectorId
150
- }, labelName && /*#__PURE__*/_react["default"].createElement(_FieldContainer["default"], {
151
- infoText: infoText,
152
- isLocked: isLocked,
153
- lockedInfoText: lockedInfoText,
154
- ePhiData: ePhiData,
155
- dataId: dataId,
156
- renderProps: renderLabelProps
157
- }, /*#__PURE__*/_react["default"].createElement(_Label["default"], _extends({
158
- text: labelName,
159
- size: fieldSize === 'small' ? 'small' : 'medium',
160
- palette: isMandatory ? 'mandatory' : isDisabled ? 'primary' : labelPalette,
161
- customClass: "".concat(_FieldsModule["default"].fieldLabel, " ").concat(labelCustomClass, " ").concat(isMandatory ? _FieldsModule["default"].labelMandatory : ''),
162
- htmlFor: uniqueId,
163
- dataId: isDisabled ? "".concat(dataId, "_label_disabled") : isMandatory ? "".concat(dataId, "_label_mandatory") : "".concat(dataId, "_label")
164
- }, LabelProps, {
165
- id: labelName
166
- }))), /*#__PURE__*/_react["default"].createElement("div", {
167
- className: "".concat(_FieldsModule["default"].fieldContainer, " ").concat(labelName ? _FieldsModule["default"]["fieldMargin_".concat(fieldSize)] : '')
168
- }, /*#__PURE__*/_react["default"].createElement(_TextBoxIcon["default"], _extends({
169
- htmlId: uniqueId,
170
- id: id,
171
- type: textBoxType,
172
- variant: textBoxVariant,
173
- size: fieldSize === 'medium' ? textBoxSize : 'xsmall',
174
- maxLength: maxLength,
175
- isReadOnly: isReadOnly,
176
- inputRef: this.handleGetRef,
177
- value: value,
178
- onChange: this.handleChange,
179
- dataId: dataId,
180
- onBlur: onBlur,
181
- onKeyDown: onKeyDown,
182
- placeHolder: placeHolder,
183
- borderColor: borderColor,
184
- onFocus: onFocus,
185
- isDisabled: isDisabled,
186
- needEffect: isReadOnly || isDisabled ? false : true,
187
- isClickable: isClickable,
188
- needReadOnlyStyle: needReadOnlyStyle
189
- }, TextBoxIconProps, {
190
- a11y: {
191
- ariaLabelledby: labelName
192
- }
193
- }), children ? children : null), validationMessage && /*#__PURE__*/_react["default"].createElement(_ValidationMessage["default"], _extends({
194
- text: validationMessage,
195
- palette: validationPalette,
196
- type: errorType,
197
- dataId: "".concat(dataId, "_ValidationMessage"),
198
- htmlFor: uniqueId
199
- }, ValidationMessageProps1)), validationRuleMessage && /*#__PURE__*/_react["default"].createElement(_ValidationMessage["default"], _extends({
200
- text: validationRuleMessage,
201
- palette: validationRulePalette,
202
- type: errorType,
203
- htmlFor: uniqueId,
204
- dataId: "".concat(dataId, "_ValidationRuleMessage")
205
- }, ValidationMessageProps2))));
206
- }
207
- }]);
208
-
209
- return TextBoxField;
210
- }(_react.PureComponent);
141
+ }), children ? children : null), validationMessage && /*#__PURE__*/_react["default"].createElement(_ValidationMessage["default"], _extends({
142
+ text: validationMessage,
143
+ palette: validationPalette,
144
+ type: errorType,
145
+ dataId: "".concat(dataId, "_ValidationMessage"),
146
+ htmlFor: uniqueId
147
+ }, ValidationMessageProps1)), validationRuleMessage && /*#__PURE__*/_react["default"].createElement(_ValidationMessage["default"], _extends({
148
+ text: validationRuleMessage,
149
+ palette: validationRulePalette,
150
+ type: errorType,
151
+ htmlFor: uniqueId,
152
+ dataId: "".concat(dataId, "_ValidationRuleMessage")
153
+ }, ValidationMessageProps2))));
154
+ };
211
155
 
212
- exports["default"] = TextBoxField;
213
156
  TextBoxField.propTypes = _propTypes.propTypes;
214
- TextBoxField.defaultProps = _defaultProps.defaultProps; // if (__DOCS__) {
215
- // TextBoxField.docs = {
216
- // componentGroup: 'Form Fields',
217
- // folderName: 'General'
218
- // };
219
- // }
157
+ TextBoxField.defaultProps = _defaultProps.defaultProps;
158
+ var MemoizedTextBoxField = /*#__PURE__*/(0, _react.memo)(TextBoxField);
159
+ MemoizedTextBoxField.propTypes = _propTypes.propTypes;
160
+ MemoizedTextBoxField.defaultProps = _defaultProps.defaultProps;
161
+ MemoizedTextBoxField.displayName = 'TextBoxField';
162
+ var _default = TextBoxField;
163
+ exports["default"] = _default;