react-semaphor 0.0.81 → 0.0.83
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/react-semaphor.d.ts +11 -1
- package/dist/react-semaphor.js +2793 -2786
- package/dist/react-semaphor.umd.cjs +45 -45
- package/package.json +1 -1
package/dist/react-semaphor.d.ts
CHANGED
|
@@ -149,6 +149,12 @@ declare type CardWithFooter = BaseCustomCard & {
|
|
|
149
149
|
|
|
150
150
|
export declare function cleanCard(card: TCard): TCard;
|
|
151
151
|
|
|
152
|
+
export declare type ConnectionPolicy = {
|
|
153
|
+
connectionId?: string;
|
|
154
|
+
name: string;
|
|
155
|
+
params: Params;
|
|
156
|
+
};
|
|
157
|
+
|
|
152
158
|
export declare function createSqlGenConfig(column: TDataColumn, preSqlGen: SqlGen, calc?: AggregateCalc): SqlGen;
|
|
153
159
|
|
|
154
160
|
export declare type CustomCard = CardWithContent | CardWithFooter;
|
|
@@ -317,6 +323,10 @@ export declare type LoadingProps = {
|
|
|
317
323
|
|
|
318
324
|
export declare const NUMBER_DATA_TYPES: string[];
|
|
319
325
|
|
|
326
|
+
declare type Params = {
|
|
327
|
+
[key: string]: string | number;
|
|
328
|
+
};
|
|
329
|
+
|
|
320
330
|
export declare const resolveDataType: (value: any) => string;
|
|
321
331
|
|
|
322
332
|
export declare function SelectComponent({ title, items, value, isLoading, isError, onChange, }: SelectProps): JSX_2.Element;
|
|
@@ -881,7 +891,7 @@ export declare function useEditorAside(token?: AuthToken, connectionQueryKey?: s
|
|
|
881
891
|
isColumnsLoadingOrFetching: boolean;
|
|
882
892
|
isColumnsError: boolean;
|
|
883
893
|
isAPIConnection: boolean;
|
|
884
|
-
tableName:
|
|
894
|
+
tableName: any;
|
|
885
895
|
schemaName: string;
|
|
886
896
|
handleConnectionChange: (value: string) => void;
|
|
887
897
|
handleDatabaseChange: (value: string) => void;
|