@pipedream/connect-react 1.0.0-preview.9 → 1.0.2
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/README.md +6 -2
- package/dist/connect-react.es.js +13978 -11459
- package/dist/connect-react.umd.d.ts +40 -21
- package/dist/connect-react.umd.js +18 -16
- package/package.json +4 -3
package/README.md
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
# Pipedream Connect-React
|
|
2
2
|
|
|
3
|
-
>
|
|
4
|
-
> This package is in early preview and is undergoing rapid development, polish, and expanding customization capabilities.
|
|
3
|
+
> This package is actively maintained and is continuing to expand supported capabilities and overall developer experience.
|
|
5
4
|
>
|
|
6
5
|
> Please join [our community](https://pipedream.com/support) or reach out to `connect@pipedream.com` with feedback.
|
|
7
6
|
|
|
@@ -149,6 +148,11 @@ type ComponentFormProps = {
|
|
|
149
148
|
onUpdateConfiguredProps: (v: Record<string, any>) => void;
|
|
150
149
|
/** Hide optional props section */
|
|
151
150
|
hideOptionalProps: boolean;
|
|
151
|
+
/** SDK response payload. Used in conjunction with enableDebugging to
|
|
152
|
+
* show errors in the form. */
|
|
153
|
+
sdkResponse: unknown[] | unknown | undefined;
|
|
154
|
+
/** Whether to show show errors in the form. Requires sdkErrors to be set. */
|
|
155
|
+
enableDebugging?: boolean;
|
|
152
156
|
};
|
|
153
157
|
```
|
|
154
158
|
|