react-semaphor 0.0.571 → 0.0.572
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-C32xyi1Z.js → dashboard-plus-DHeAgwZa.js} +6542 -6506
- package/dist/chunks/dashboard-plus-v6hwyk70.js +425 -0
- package/dist/chunks/{index-BSZ4q0Db.js → index-BLDEqvw3.js} +9370 -9294
- package/dist/chunks/{index-sMMR87WC.js → index-VnK5nMtS.js} +126 -126
- 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 +3 -14
- package/dist/types/surfboard.d.ts +3 -1
- package/dist/types/types.d.ts +3 -1
- package/package.json +1 -1
- package/dist/chunks/dashboard-plus-BoQnT85A.js +0 -455
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-v6hwyk70.js"),r=require("../types/index.cjs");exports.Surfboard=e.DashboardPlus;exports.EMPTY_SELECTION=r.EMPTY_SELECTION;
|
package/dist/surfboard/index.js
CHANGED
package/dist/types/main.d.ts
CHANGED
|
@@ -427,13 +427,6 @@ declare interface ColumnSettings {
|
|
|
427
427
|
|
|
428
428
|
declare type ColumnSettingsMap = Record<string, ColumnSettings>;
|
|
429
429
|
|
|
430
|
-
export declare interface ColumnSubtotalMeta {
|
|
431
|
-
alias: string;
|
|
432
|
-
subtotalLevel?: string;
|
|
433
|
-
isColumnSubtotal?: boolean;
|
|
434
|
-
isColumnTotal?: boolean;
|
|
435
|
-
}
|
|
436
|
-
|
|
437
430
|
export declare type ColumnType = 'string' | 'number' | 'date';
|
|
438
431
|
|
|
439
432
|
declare type ComboBoxOption = {
|
|
@@ -1091,7 +1084,9 @@ export declare interface MetricField extends Field {
|
|
|
1091
1084
|
}
|
|
1092
1085
|
}
|
|
1093
1086
|
*/
|
|
1094
|
-
parameters?:
|
|
1087
|
+
parameters?: {
|
|
1088
|
+
filters?: FilterGroup;
|
|
1089
|
+
};
|
|
1095
1090
|
aliasTemplate?: string;
|
|
1096
1091
|
valueAliases?: Record<string, string>;
|
|
1097
1092
|
}
|
|
@@ -1186,12 +1181,6 @@ export declare enum PivotMarkerEnum {
|
|
|
1186
1181
|
ALL = "__ALL__"
|
|
1187
1182
|
}
|
|
1188
1183
|
|
|
1189
|
-
export declare interface PivotRowMetadata {
|
|
1190
|
-
isSubtotal?: boolean;
|
|
1191
|
-
subtotalLevel?: string | null;
|
|
1192
|
-
isGrandTotal?: boolean;
|
|
1193
|
-
}
|
|
1194
|
-
|
|
1195
1184
|
export declare type Placeholders = {
|
|
1196
1185
|
/**
|
|
1197
1186
|
* Placeholder for the card when there are no records to display.
|
package/dist/types/types.d.ts
CHANGED