react-semaphor 0.0.519 → 0.0.520
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-g5PiBLSc.js → dashboard-plus-BYcI3HUp.js} +9 -9
- package/dist/chunks/{dashboard-plus-Duk4pSYK.js → dashboard-plus-Cp72TsyZ.js} +1069 -1048
- package/dist/chunks/{index-CIiZToL_.js → index-Pj9pp9wV.js} +2 -2
- package/dist/chunks/{index-mAN4JUt2.js → index-_G-dw8N7.js} +2 -2
- 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 +3 -1
- package/dist/types/main.d.ts +4 -2
- package/dist/types/surfboard.d.ts +3 -1
- package/dist/types/types.d.ts +3 -1
- package/package.json +1 -1
|
@@ -97,6 +97,8 @@ declare interface CardInteractionConfig {
|
|
|
97
97
|
clickFilterInteractions?: ClickFilterInteraction[];
|
|
98
98
|
}
|
|
99
99
|
|
|
100
|
+
declare type CardMode = 'explorer' | 'dev';
|
|
101
|
+
|
|
100
102
|
declare type CardWithContent = BaseCustomCard & {
|
|
101
103
|
content: React.FC<{
|
|
102
104
|
card: TCard;
|
|
@@ -736,7 +738,7 @@ export declare type TBaseQuery = {
|
|
|
736
738
|
};
|
|
737
739
|
|
|
738
740
|
export declare type TCard = {
|
|
739
|
-
mode?:
|
|
741
|
+
mode?: CardMode;
|
|
740
742
|
id: string;
|
|
741
743
|
title: string;
|
|
742
744
|
tabTitle?: string;
|
package/dist/types/main.d.ts
CHANGED
|
@@ -110,7 +110,7 @@ declare type Actions = {
|
|
|
110
110
|
};
|
|
111
111
|
|
|
112
112
|
declare type Actions_2 = TableActions & ExplorerActions & DrillActions & {
|
|
113
|
-
setCardMode: (mode:
|
|
113
|
+
setCardMode: (mode: CardMode) => void;
|
|
114
114
|
setEditorFilterMode: (filterColumnName: string, filterMode: 'include' | 'exclude') => void;
|
|
115
115
|
setLowerIsBetter: (lowerIsBetter: boolean) => void;
|
|
116
116
|
clearEditorFilter: (filterColumn: FilterByColumn) => void;
|
|
@@ -292,6 +292,8 @@ declare interface CardInteractionConfig {
|
|
|
292
292
|
clickFilterInteractions?: ClickFilterInteraction[];
|
|
293
293
|
}
|
|
294
294
|
|
|
295
|
+
export declare type CardMode = 'explorer' | 'dev';
|
|
296
|
+
|
|
295
297
|
declare type CardWithContent = BaseCustomCard & {
|
|
296
298
|
content: React.FC<{
|
|
297
299
|
card: TCard;
|
|
@@ -1258,7 +1260,7 @@ export declare type TBaseQuery = {
|
|
|
1258
1260
|
};
|
|
1259
1261
|
|
|
1260
1262
|
export declare type TCard = {
|
|
1261
|
-
mode?:
|
|
1263
|
+
mode?: CardMode;
|
|
1262
1264
|
id: string;
|
|
1263
1265
|
title: string;
|
|
1264
1266
|
tabTitle?: string;
|
|
@@ -97,6 +97,8 @@ declare interface CardInteractionConfig {
|
|
|
97
97
|
clickFilterInteractions?: ClickFilterInteraction[];
|
|
98
98
|
}
|
|
99
99
|
|
|
100
|
+
declare type CardMode = 'explorer' | 'dev';
|
|
101
|
+
|
|
100
102
|
declare type CardWithContent = BaseCustomCard & {
|
|
101
103
|
content: React.FC<{
|
|
102
104
|
card: TCard;
|
|
@@ -741,7 +743,7 @@ export declare type TBaseQuery = {
|
|
|
741
743
|
};
|
|
742
744
|
|
|
743
745
|
export declare type TCard = {
|
|
744
|
-
mode?:
|
|
746
|
+
mode?: CardMode;
|
|
745
747
|
id: string;
|
|
746
748
|
title: string;
|
|
747
749
|
tabTitle?: string;
|
package/dist/types/types.d.ts
CHANGED
|
@@ -96,6 +96,8 @@ declare interface CardInteractionConfig {
|
|
|
96
96
|
clickFilterInteractions?: ClickFilterInteraction[];
|
|
97
97
|
}
|
|
98
98
|
|
|
99
|
+
declare type CardMode = 'explorer' | 'dev';
|
|
100
|
+
|
|
99
101
|
declare type CardWithContent = BaseCustomCard & {
|
|
100
102
|
content: React.FC<{
|
|
101
103
|
card: TCard;
|
|
@@ -733,7 +735,7 @@ export declare type TBaseQuery = {
|
|
|
733
735
|
};
|
|
734
736
|
|
|
735
737
|
export declare type TCard = {
|
|
736
|
-
mode?:
|
|
738
|
+
mode?: CardMode;
|
|
737
739
|
id: string;
|
|
738
740
|
title: string;
|
|
739
741
|
tabTitle?: string;
|