@pipedream/connect-react 2.2.0 → 2.4.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.
@@ -73,6 +73,10 @@ export declare type Colors = {
73
73
  neutral70: string;
74
74
  neutral80: string;
75
75
  neutral90: string;
76
+ optionHover?: string;
77
+ optionSelected?: string;
78
+ optionSelectedHover?: string;
79
+ appIconBackground?: string;
76
80
  };
77
81
 
78
82
  export declare function ComponentForm<T extends ConfigurableProps>(props: ComponentFormProps<T>): JSX_2.Element;
@@ -138,6 +142,8 @@ declare function ControlArray(): JSX_2.Element;
138
142
 
139
143
  export declare function ControlBoolean(): JSX_2.Element;
140
144
 
145
+ export declare function ControlHttpRequest(): JSX_2.Element;
146
+
141
147
  export declare function ControlInput(): JSX_2.Element;
142
148
 
143
149
  declare function ControlObject(): JSX_2.Element;
@@ -189,6 +195,7 @@ export declare type CustomizableProps = {
189
195
  controlApp: ComponentProps<typeof ControlApp> & FormFieldContext<ConfigurablePropApp>;
190
196
  controlArray: ComponentProps<typeof ControlArray> & FormFieldContext<ConfigurableProp>;
191
197
  controlBoolean: ComponentProps<typeof ControlBoolean> & FormFieldContext<ConfigurablePropBoolean>;
198
+ controlHttpRequest: ComponentProps<typeof ControlHttpRequest> & FormFieldContext<ConfigurableProp>;
192
199
  controlInput: ComponentProps<typeof ControlInput> & FormFieldContext<ConfigurableProp>;
193
200
  controlObject: ComponentProps<typeof ControlObject> & FormFieldContext<ConfigurableProp>;
194
201
  controlSql: ComponentProps<typeof ControlSql> & FormFieldContext<ConfigurableProp>;
@@ -421,6 +428,8 @@ declare type Props_2 = {
421
428
  export declare type ReactSelectComponents = {
422
429
  controlAppSelect: typeof ControlApp;
423
430
  controlSelect: typeof ControlSelect;
431
+ selectApp: typeof ControlApp;
432
+ selectComponent: typeof ControlSelect;
424
433
  };
425
434
 
426
435
  export declare function RemoteOptionsContainer({ queryEnabled }: RemoteOptionsContainerProps): JSX_2.Element;