@pipedream/connect-react 2.3.0 → 2.4.1
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/connect-react.es.js +4093 -3772
- package/dist/connect-react.umd.d.ts +3 -0
- package/dist/connect-react.umd.js +15 -15
- package/package.json +1 -1
|
@@ -142,6 +142,8 @@ declare function ControlArray(): JSX_2.Element;
|
|
|
142
142
|
|
|
143
143
|
export declare function ControlBoolean(): JSX_2.Element;
|
|
144
144
|
|
|
145
|
+
export declare function ControlHttpRequest(): JSX_2.Element;
|
|
146
|
+
|
|
145
147
|
export declare function ControlInput(): JSX_2.Element;
|
|
146
148
|
|
|
147
149
|
declare function ControlObject(): JSX_2.Element;
|
|
@@ -193,6 +195,7 @@ export declare type CustomizableProps = {
|
|
|
193
195
|
controlApp: ComponentProps<typeof ControlApp> & FormFieldContext<ConfigurablePropApp>;
|
|
194
196
|
controlArray: ComponentProps<typeof ControlArray> & FormFieldContext<ConfigurableProp>;
|
|
195
197
|
controlBoolean: ComponentProps<typeof ControlBoolean> & FormFieldContext<ConfigurablePropBoolean>;
|
|
198
|
+
controlHttpRequest: ComponentProps<typeof ControlHttpRequest> & FormFieldContext<ConfigurableProp>;
|
|
196
199
|
controlInput: ComponentProps<typeof ControlInput> & FormFieldContext<ConfigurableProp>;
|
|
197
200
|
controlObject: ComponentProps<typeof ControlObject> & FormFieldContext<ConfigurableProp>;
|
|
198
201
|
controlSql: ComponentProps<typeof ControlSql> & FormFieldContext<ConfigurableProp>;
|