@pipedream/connect-react 1.0.2 → 1.1.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.
@@ -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>;
@@ -150,8 +154,10 @@ export declare type CustomizableProps = {
150
154
  connectButton: ComponentProps<typeof ControlApp> & FormFieldContext<ConfigurableProp>;
151
155
  controlAny: ComponentProps<typeof ControlAny> & FormFieldContext<ConfigurableProp>;
152
156
  controlApp: ComponentProps<typeof ControlApp> & FormFieldContext<ConfigurableProp>;
157
+ controlArray: ComponentProps<typeof ControlArray> & FormFieldContext<ConfigurableProp>;
153
158
  controlBoolean: ComponentProps<typeof ControlBoolean> & FormFieldContext<ConfigurableProp>;
154
159
  controlInput: ComponentProps<typeof ControlInput> & FormFieldContext<ConfigurableProp>;
160
+ controlObject: ComponentProps<typeof ControlObject> & FormFieldContext<ConfigurableProp>;
155
161
  controlSubmit: ComponentProps<typeof ControlSubmit>;
156
162
  description: ComponentProps<typeof Description>;
157
163
  error: ComponentProps<typeof Errors>;