@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.
- package/dist/react-web.cjs.development.js +3 -1
- package/dist/react-web.cjs.development.js.map +1 -1
- package/dist/react-web.cjs.production.min.js +1 -1
- package/dist/react-web.cjs.production.min.js.map +1 -1
- package/dist/react-web.esm.js +3 -1
- package/dist/react-web.esm.js.map +1 -1
- package/package.json +1 -1
- package/skinny/dist/collection-utils-3487dd27.js +238 -0
- package/skinny/dist/collection-utils-3487dd27.js.map +1 -0
- package/skinny/dist/plume/text-input/index.js +1 -1
- package/skinny/dist/plume/text-input/index.js.map +1 -1
- package/skinny/dist/ssr-d2fd94f2.js +31 -0
- package/skinny/dist/ssr-d2fd94f2.js.map +1 -0
|
@@ -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
|
|
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,
|