react-semaphor 0.0.127 → 0.0.129
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/2DAFLIRC-q0QZvyUX.js +9088 -0
- package/dist/index-jyE0UTAE.js +56449 -0
- package/dist/react-semaphor.d.ts +6 -2
- package/dist/react-semaphor.js +34 -54013
- package/dist/react-semaphor.umd.cjs +1231 -146
- package/dist/style.css +1 -1
- package/package.json +1 -1
package/dist/react-semaphor.d.ts
CHANGED
|
@@ -210,7 +210,7 @@ export declare type DashboardProps = {
|
|
|
210
210
|
};
|
|
211
211
|
|
|
212
212
|
export declare function DashboardProvider({ children }: {
|
|
213
|
-
children:
|
|
213
|
+
children: React_2.ReactNode;
|
|
214
214
|
}): JSX_2.Element;
|
|
215
215
|
|
|
216
216
|
export declare type DashboardStore = {
|
|
@@ -352,6 +352,8 @@ export declare type LoadingProps = {
|
|
|
352
352
|
|
|
353
353
|
export declare const NUMBER_DATA_TYPES: string[];
|
|
354
354
|
|
|
355
|
+
declare type Operation = '=' | '>' | '<' | '>=' | '<=' | '!=' | 'in' | 'not in' | 'like' | 'not like' | 'between' | 'not between' | 'is null' | 'is not null';
|
|
356
|
+
|
|
355
357
|
declare type Params = {
|
|
356
358
|
[key: string]: string | number | string[] | number[];
|
|
357
359
|
};
|
|
@@ -538,6 +540,7 @@ declare type TFilter = {
|
|
|
538
540
|
table: string;
|
|
539
541
|
database: string;
|
|
540
542
|
sql: string;
|
|
543
|
+
operation: Operation;
|
|
541
544
|
};
|
|
542
545
|
|
|
543
546
|
declare type TFilterValue = FilterForString | FilterForEqual | FilterForCompare | FilterForBetween | FilterForIn | FilterForDate;
|
|
@@ -937,6 +940,7 @@ export declare const useDashboardStore: UseBoundStore<Omit<StoreApi<DashboardSto
|
|
|
937
940
|
table: string;
|
|
938
941
|
database: string;
|
|
939
942
|
sql: string;
|
|
943
|
+
operation: Operation;
|
|
940
944
|
}[] | undefined;
|
|
941
945
|
customCards?: ({
|
|
942
946
|
cardId: string;
|
|
@@ -1157,7 +1161,7 @@ export declare const useDashboardStore: UseBoundStore<Omit<StoreApi<DashboardSto
|
|
|
1157
1161
|
|
|
1158
1162
|
export declare const useEditorActions: () => Actions_2;
|
|
1159
1163
|
|
|
1160
|
-
export declare function useEditorAside(token?: AuthToken,
|
|
1164
|
+
export declare function useEditorAside(token?: AuthToken, _connectionQueryKey?: string): {
|
|
1161
1165
|
connectionItems: any;
|
|
1162
1166
|
isConnectionsLoading: boolean;
|
|
1163
1167
|
isConnectionsError: boolean;
|