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.
@@ -11151,6 +11151,7 @@ var CollectionContextProvider = function CollectionContextProvider(props) {
11151
11151
  */
11152
11152
  var FORMATS = {
11153
11153
  NONE: '',
11154
+ TEXT: 'text',
11154
11155
  DATE: 'date',
11155
11156
  DATERANGE: 'DATERANGE',
11156
11157
  TIME: 'time',
@@ -11224,6 +11225,14 @@ var DynamicFormField = function DynamicFormField(props) {
11224
11225
  function renderByFormat() {
11225
11226
  var label = required ? field.label + " *" : field.label;
11226
11227
  switch (format) {
11228
+ case FORMATS.TEXT:
11229
+ return /*#__PURE__*/React.createElement(TextArea, {
11230
+ id: id,
11231
+ label: label,
11232
+ value: value,
11233
+ onChange: change,
11234
+ outlined: true
11235
+ });
11227
11236
  case FORMATS.DATE:
11228
11237
  return /*#__PURE__*/React.createElement(TextField, {
11229
11238
  id: id,