@pipedream/connect-react 1.0.2 → 1.2.0
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 +3270 -2868
- package/dist/connect-react.umd.d.ts +9 -0
- package/dist/connect-react.umd.js +14 -14
- package/package.json +2 -2
|
@@ -101,10 +101,14 @@ declare type ControlAppProps = {
|
|
|
101
101
|
app: AppResponse;
|
|
102
102
|
};
|
|
103
103
|
|
|
104
|
+
declare function ControlArray(): JSX_2.Element;
|
|
105
|
+
|
|
104
106
|
export declare function ControlBoolean(): JSX_2.Element;
|
|
105
107
|
|
|
106
108
|
export declare function ControlInput(): JSX_2.Element;
|
|
107
109
|
|
|
110
|
+
declare function ControlObject(): JSX_2.Element;
|
|
111
|
+
|
|
108
112
|
declare type ControlProps<T extends ConfigurableProps, U extends ConfigurableProp> = {
|
|
109
113
|
field: FormFieldContext<U>;
|
|
110
114
|
form: FormContext<T>;
|
|
@@ -123,6 +127,8 @@ declare type ControlSelectProps<T> = {
|
|
|
123
127
|
onLoadMore?: () => void;
|
|
124
128
|
};
|
|
125
129
|
|
|
130
|
+
export declare function ControlSql(): JSX_2.Element;
|
|
131
|
+
|
|
126
132
|
export declare function ControlSubmit(props: ControlSubmitProps): JSX_2.Element;
|
|
127
133
|
|
|
128
134
|
declare type ControlSubmitProps = {
|
|
@@ -150,8 +156,11 @@ export declare type CustomizableProps = {
|
|
|
150
156
|
connectButton: ComponentProps<typeof ControlApp> & FormFieldContext<ConfigurableProp>;
|
|
151
157
|
controlAny: ComponentProps<typeof ControlAny> & FormFieldContext<ConfigurableProp>;
|
|
152
158
|
controlApp: ComponentProps<typeof ControlApp> & FormFieldContext<ConfigurableProp>;
|
|
159
|
+
controlArray: ComponentProps<typeof ControlArray> & FormFieldContext<ConfigurableProp>;
|
|
153
160
|
controlBoolean: ComponentProps<typeof ControlBoolean> & FormFieldContext<ConfigurableProp>;
|
|
154
161
|
controlInput: ComponentProps<typeof ControlInput> & FormFieldContext<ConfigurableProp>;
|
|
162
|
+
controlObject: ComponentProps<typeof ControlObject> & FormFieldContext<ConfigurableProp>;
|
|
163
|
+
controlSql: ComponentProps<typeof ControlSql> & FormFieldContext<ConfigurableProp>;
|
|
155
164
|
controlSubmit: ComponentProps<typeof ControlSubmit>;
|
|
156
165
|
description: ComponentProps<typeof Description>;
|
|
157
166
|
error: ComponentProps<typeof Errors>;
|