@wise/dynamic-flow-client 5.12.0 → 5.13.0-experimental-13d828c

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/build/main.js CHANGED
@@ -5761,6 +5761,7 @@ var stringSchemaToTextInputComponent = (schemaMapperProps, mapperProps) => {
5761
5761
  format,
5762
5762
  maxLength,
5763
5763
  minLength,
5764
+ pattern,
5764
5765
  suggestions,
5765
5766
  validationMessages
5766
5767
  } = schema;
@@ -5788,6 +5789,7 @@ var stringSchemaToTextInputComponent = (schemaMapperProps, mapperProps) => {
5788
5789
  displayFormat,
5789
5790
  maxLength,
5790
5791
  minLength,
5792
+ pattern,
5791
5793
  suggestions: mapStringSchemaSuggestions(suggestions, mapperProps.logEvent),
5792
5794
  value,
5793
5795
  validationAsyncState,
@@ -8158,6 +8160,7 @@ var textInputComponentToProps = (component, rendererMapperProps) => __spreadProp
8158
8160
  displayFormat: component.displayFormat,
8159
8161
  maxLength: component.maxLength,
8160
8162
  minLength: component.minLength,
8163
+ pattern: component.pattern,
8161
8164
  suggestions: component.suggestions,
8162
8165
  onChange: component.onChange.bind(component)
8163
8166
  });
package/build/main.mjs CHANGED
@@ -5731,6 +5731,7 @@ var stringSchemaToTextInputComponent = (schemaMapperProps, mapperProps) => {
5731
5731
  format,
5732
5732
  maxLength,
5733
5733
  minLength,
5734
+ pattern,
5734
5735
  suggestions,
5735
5736
  validationMessages
5736
5737
  } = schema;
@@ -5758,6 +5759,7 @@ var stringSchemaToTextInputComponent = (schemaMapperProps, mapperProps) => {
5758
5759
  displayFormat,
5759
5760
  maxLength,
5760
5761
  minLength,
5762
+ pattern,
5761
5763
  suggestions: mapStringSchemaSuggestions(suggestions, mapperProps.logEvent),
5762
5764
  value,
5763
5765
  validationAsyncState,
@@ -8128,6 +8130,7 @@ var textInputComponentToProps = (component, rendererMapperProps) => __spreadProp
8128
8130
  displayFormat: component.displayFormat,
8129
8131
  maxLength: component.maxLength,
8130
8132
  minLength: component.minLength,
8133
+ pattern: component.pattern,
8131
8134
  suggestions: component.suggestions,
8132
8135
  onChange: component.onChange.bind(component)
8133
8136
  });