Skip to content

Commit df8a3b7

Browse files
authored
fix(connect-react): exclude 'dir' from configurable props (#17370)
The 'dir' prop is currently unconfigurable and unsupported for rendering in the component form.
1 parent 724480c commit df8a3b7

File tree

4 files changed

+15
-11
lines changed

4 files changed

+15
-11
lines changed

packages/connect-react/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
# Changelog
44

5+
# [1.3.1] - 2025-06-30
6+
7+
## Changed
8+
9+
- Fixed handling of the 'dir' prop type to exclude it from configurable props
10+
511
# [1.3.0] - 2025-06-10
612

713
## Added

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.3.0",
3+
"version": "1.3.1",
44
"description": "Pipedream Connect library for React",
55
"files": [
66
"dist"

packages/connect-react/src/hooks/form-context.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ export const skippablePropTypes = [
5151
"$.interface.http",
5252
"$.interface.apphook",
5353
"$.interface.timer", // TODO add support for this (cron string and timers)
54+
"dir",
5455
]
5556

5657
export const FormContext = createContext<FormContext<any /* XXX fix */> | undefined>(undefined); // eslint-disable-line @typescript-eslint/no-explicit-any

pnpm-lock.yaml

Lines changed: 7 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)