react-semaphor 0.0.594 → 0.0.596
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/chunks/dashboard-plus-CSOj3fnM.js +346 -0
- package/dist/chunks/{dashboard-plus-C-fw2Ob4.js → dashboard-plus-CTapGyLT.js} +5667 -5382
- package/dist/chunks/{index-SHh6S2vt.js → index-CYGgsy6B.js} +172 -173
- package/dist/chunks/{index-D5ikusXX.js → index-CYlUGQ4D.js} +17257 -17211
- package/dist/dashboard/index.cjs +1 -1
- package/dist/dashboard/index.js +1 -1
- package/dist/index.cjs +1 -1
- package/dist/index.js +2 -2
- package/dist/style.css +1 -1
- package/dist/surfboard/index.cjs +1 -1
- package/dist/surfboard/index.js +1 -1
- package/dist/types/dashboard.d.ts +2 -2
- package/dist/types/main.d.ts +8 -2
- package/dist/types/surfboard.d.ts +2 -2
- package/dist/types/types.d.ts +2 -2
- package/package.json +1 -1
- package/dist/chunks/dashboard-plus-0L3CHtnZ.js +0 -346
package/dist/surfboard/index.cjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("../chunks/dashboard-plus-
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("../chunks/dashboard-plus-CSOj3fnM.js"),r=require("../types/index.cjs");exports.Surfboard=e.DashboardPlus;exports.EMPTY_SELECTION=r.EMPTY_SELECTION;
|
package/dist/surfboard/index.js
CHANGED
|
@@ -503,7 +503,7 @@ declare type FilterOnClick = {
|
|
|
503
503
|
columnIndex: number;
|
|
504
504
|
};
|
|
505
505
|
|
|
506
|
-
declare type FilterValue = string | number | boolean | Date | [number, number] | [string, string] | string[] | number[];
|
|
506
|
+
declare type FilterValue = string | number | boolean | Date | null | [number, number] | [string, string] | string[] | number[];
|
|
507
507
|
|
|
508
508
|
export declare type GetDashboardResponse = {
|
|
509
509
|
dashboard: TDashboard;
|
|
@@ -652,7 +652,7 @@ declare type OldFilterValue = string | number | null | (string | number)[] | Ran
|
|
|
652
652
|
|
|
653
653
|
declare type Operation = '=' | '>' | '<' | '>=' | '<=' | '!=' | 'in' | 'not in' | 'like' | 'not like' | 'between' | 'not between' | 'is null' | 'is not null';
|
|
654
654
|
|
|
655
|
-
declare type Operator = '=' | '!=' | '>' | '>=' | '<' | '<=' | 'contains' | 'startsWith' | 'endsWith' | 'in' | 'not in' | 'between';
|
|
655
|
+
declare type Operator = '=' | '!=' | '>' | '>=' | '<' | '<=' | 'contains' | 'startsWith' | 'endsWith' | 'in' | 'not in' | 'between' | 'isNull' | 'isNotNull';
|
|
656
656
|
|
|
657
657
|
declare type OptionsMap = {
|
|
658
658
|
number: NumberOptions;
|
package/dist/types/main.d.ts
CHANGED
|
@@ -109,6 +109,11 @@ declare type Actions = {
|
|
|
109
109
|
removeBaseQuery: (baseQueryId: string) => void;
|
|
110
110
|
setBaseQueries: (baseQueries: TBaseQuery[]) => void;
|
|
111
111
|
setIsDashboardPanelOpen: (open: boolean) => void;
|
|
112
|
+
updateCardId: (oldCardId: string, newCardId: string) => {
|
|
113
|
+
success: boolean;
|
|
114
|
+
error?: string;
|
|
115
|
+
};
|
|
116
|
+
isCardIdUnique: (cardId: string, currentCardId?: string) => boolean;
|
|
112
117
|
};
|
|
113
118
|
|
|
114
119
|
declare type Actions_2 = TableActions & ExplorerActions & DrillActions & {
|
|
@@ -125,6 +130,7 @@ declare type Actions_2 = TableActions & ExplorerActions & DrillActions & {
|
|
|
125
130
|
setQueryConfig: (queryConfig: QueryConfig | undefined) => void;
|
|
126
131
|
setCardTitle: (title: string) => void;
|
|
127
132
|
setCardDescription: (description: string) => void;
|
|
133
|
+
setCardId: (cardId: string) => void;
|
|
128
134
|
setCountryLogo: (countryLogoId: string | null) => void;
|
|
129
135
|
setIsDevMode: (isDevMode: boolean) => void;
|
|
130
136
|
setOrderByColumns: (orderByColumns: OrderBy[]) => void;
|
|
@@ -911,7 +917,7 @@ declare type FilterOnClick = {
|
|
|
911
917
|
columnIndex: number;
|
|
912
918
|
};
|
|
913
919
|
|
|
914
|
-
export declare type FilterValue = string | number | boolean | Date | [number, number] | [string, string] | string[] | number[];
|
|
920
|
+
export declare type FilterValue = string | number | boolean | Date | null | [number, number] | [string, string] | string[] | number[];
|
|
915
921
|
|
|
916
922
|
export declare function fmt(str: string): string;
|
|
917
923
|
|
|
@@ -1127,7 +1133,7 @@ export declare type OldFilterValue = string | number | null | (string | number)[
|
|
|
1127
1133
|
|
|
1128
1134
|
declare type Operation = '=' | '>' | '<' | '>=' | '<=' | '!=' | 'in' | 'not in' | 'like' | 'not like' | 'between' | 'not between' | 'is null' | 'is not null';
|
|
1129
1135
|
|
|
1130
|
-
export declare type Operator = '=' | '!=' | '>' | '>=' | '<' | '<=' | 'contains' | 'startsWith' | 'endsWith' | 'in' | 'not in' | 'between';
|
|
1136
|
+
export declare type Operator = '=' | '!=' | '>' | '>=' | '<' | '<=' | 'contains' | 'startsWith' | 'endsWith' | 'in' | 'not in' | 'between' | 'isNull' | 'isNotNull';
|
|
1131
1137
|
|
|
1132
1138
|
declare type OptionsMap = {
|
|
1133
1139
|
number: NumberOptions;
|
|
@@ -506,7 +506,7 @@ declare type FilterOnClick = {
|
|
|
506
506
|
columnIndex: number;
|
|
507
507
|
};
|
|
508
508
|
|
|
509
|
-
declare type FilterValue = string | number | boolean | Date | [number, number] | [string, string] | string[] | number[];
|
|
509
|
+
declare type FilterValue = string | number | boolean | Date | null | [number, number] | [string, string] | string[] | number[];
|
|
510
510
|
|
|
511
511
|
export declare type GetDashboardResponse = {
|
|
512
512
|
dashboard: TDashboard;
|
|
@@ -655,7 +655,7 @@ declare type OldFilterValue = string | number | null | (string | number)[] | Ran
|
|
|
655
655
|
|
|
656
656
|
declare type Operation = '=' | '>' | '<' | '>=' | '<=' | '!=' | 'in' | 'not in' | 'like' | 'not like' | 'between' | 'not between' | 'is null' | 'is not null';
|
|
657
657
|
|
|
658
|
-
declare type Operator = '=' | '!=' | '>' | '>=' | '<' | '<=' | 'contains' | 'startsWith' | 'endsWith' | 'in' | 'not in' | 'between';
|
|
658
|
+
declare type Operator = '=' | '!=' | '>' | '>=' | '<' | '<=' | 'contains' | 'startsWith' | 'endsWith' | 'in' | 'not in' | 'between' | 'isNull' | 'isNotNull';
|
|
659
659
|
|
|
660
660
|
declare type OptionsMap = {
|
|
661
661
|
number: NumberOptions;
|
package/dist/types/types.d.ts
CHANGED
|
@@ -500,7 +500,7 @@ declare type FilterOnClick = {
|
|
|
500
500
|
columnIndex: number;
|
|
501
501
|
};
|
|
502
502
|
|
|
503
|
-
declare type FilterValue = string | number | boolean | Date | [number, number] | [string, string] | string[] | number[];
|
|
503
|
+
declare type FilterValue = string | number | boolean | Date | null | [number, number] | [string, string] | string[] | number[];
|
|
504
504
|
|
|
505
505
|
export declare type GetDashboardResponse = {
|
|
506
506
|
dashboard: TDashboard;
|
|
@@ -649,7 +649,7 @@ declare type OldFilterValue = string | number | null | (string | number)[] | Ran
|
|
|
649
649
|
|
|
650
650
|
declare type Operation = '=' | '>' | '<' | '>=' | '<=' | '!=' | 'in' | 'not in' | 'like' | 'not like' | 'between' | 'not between' | 'is null' | 'is not null';
|
|
651
651
|
|
|
652
|
-
declare type Operator = '=' | '!=' | '>' | '>=' | '<' | '<=' | 'contains' | 'startsWith' | 'endsWith' | 'in' | 'not in' | 'between';
|
|
652
|
+
declare type Operator = '=' | '!=' | '>' | '>=' | '<' | '<=' | 'contains' | 'startsWith' | 'endsWith' | 'in' | 'not in' | 'between' | 'isNull' | 'isNotNull';
|
|
653
653
|
|
|
654
654
|
declare type OptionsMap = {
|
|
655
655
|
number: NumberOptions;
|