ywana-core8 0.0.913 → 0.0.915

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.umd.js CHANGED
@@ -11153,6 +11153,7 @@
11153
11153
  */
11154
11154
  var FORMATS = {
11155
11155
  NONE: '',
11156
+ TEXT: 'text',
11156
11157
  DATE: 'date',
11157
11158
  DATERANGE: 'DATERANGE',
11158
11159
  TIME: 'time',
@@ -11226,6 +11227,14 @@
11226
11227
  function renderByFormat() {
11227
11228
  var label = required ? field.label + " *" : field.label;
11228
11229
  switch (format) {
11230
+ case FORMATS.TEXT:
11231
+ return /*#__PURE__*/React__default["default"].createElement(TextArea, {
11232
+ id: id,
11233
+ label: label,
11234
+ value: value,
11235
+ onChange: change,
11236
+ outlined: true
11237
+ });
11229
11238
  case FORMATS.DATE:
11230
11239
  return /*#__PURE__*/React__default["default"].createElement(TextField, {
11231
11240
  id: id,