@pipedream/connect-react 2.1.2 → 2.3.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 +3356 -3156
- package/dist/connect-react.umd.d.ts +6 -0
- package/dist/connect-react.umd.js +14 -14
- package/package.json +5 -4
|
@@ -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;
|
|
@@ -421,6 +425,8 @@ declare type Props_2 = {
|
|
|
421
425
|
export declare type ReactSelectComponents = {
|
|
422
426
|
controlAppSelect: typeof ControlApp;
|
|
423
427
|
controlSelect: typeof ControlSelect;
|
|
428
|
+
selectApp: typeof ControlApp;
|
|
429
|
+
selectComponent: typeof ControlSelect;
|
|
424
430
|
};
|
|
425
431
|
|
|
426
432
|
export declare function RemoteOptionsContainer({ queryEnabled }: RemoteOptionsContainerProps): JSX_2.Element;
|