Skip to content

Commit 6ce06f9

Browse files
committed
Update version and README
1 parent 313cb49 commit 6ce06f9

File tree

3 files changed

+10
-1
lines changed

3 files changed

+10
-1
lines changed

packages/connect-react/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
<!-- markdownlint-disable MD024 -->
22
# Changelog
33

4+
# [1.0.0-preview.28] - 2025-02-05
5+
6+
- Surface SDK errors in the form
7+
48
# [1.0.0-preview.27] - 2025-01-30
59

610
- Add styling to alerts

packages/connect-react/README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -149,6 +149,11 @@ type ComponentFormProps = {
149149
onUpdateConfiguredProps: (v: Record<string, any>) => void;
150150
/** Hide optional props section */
151151
hideOptionalProps: boolean;
152+
/** SDK response payload or the error object from catching SDK request failures.
153+
* Used in conjunction with enableDebugging to show errors in the form.*/
154+
sdkErrors: unknown[] | unknown | undefined;
155+
/** Whether to show show errors in the form. Requires sdkErrors to be set. */
156+
enableDebugging?: boolean;
152157
};
153158
```
154159

packages/connect-react/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@pipedream/connect-react",
3-
"version": "1.0.0-preview.27",
3+
"version": "1.0.0-preview.28",
44
"description": "Pipedream Connect library for React",
55
"files": [
66
"dist"

0 commit comments

Comments
 (0)