@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.
@@ -2981,7 +2981,9 @@ function useTextInput(plasmicClass, props, config, ref) {
2981
2981
  style: style
2982
2982
  }
2983
2983
  }, _overrides[config.input] = {
2984
- props: _extends({}, omit.apply(void 0, [rest].concat(plasmicClass.internalArgProps, plasmicClass.internalVariantProps)), {
2984
+ props: _extends({}, omit.apply(void 0, [rest].concat(plasmicClass.internalArgProps.filter(function (prop) {
2985
+ return prop !== "required";
2986
+ }), plasmicClass.internalVariantProps)), {
2985
2987
  disabled: isDisabled,
2986
2988
  ref: inputRef,
2987
2989
  className: inputClassName,