@plasmicapp/react-web 0.2.96 → 0.2.97

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.
@@ -2974,7 +2974,9 @@ function useTextInput(plasmicClass, props, config, ref) {
2974
2974
  style: style
2975
2975
  }
2976
2976
  }, _overrides[config.input] = {
2977
- props: _extends({}, omit.apply(void 0, [rest].concat(plasmicClass.internalArgProps, plasmicClass.internalVariantProps)), {
2977
+ props: _extends({}, omit.apply(void 0, [rest].concat(plasmicClass.internalArgProps.filter(function (prop) {
2978
+ return prop !== "required";
2979
+ }), plasmicClass.internalVariantProps)), {
2978
2980
  disabled: isDisabled,
2979
2981
  ref: inputRef,
2980
2982
  className: inputClassName,