locust-ui 2.37.13-next-16276679073 → 2.37.13-next-16289842019
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/README.md +1 -1
- package/lib/types/lib.d.ts +4 -5
- package/lib/webui.js +32046 -55461
- package/package.json +3 -2
package/README.md
CHANGED
package/lib/types/lib.d.ts
CHANGED
|
@@ -194,7 +194,6 @@ declare interface IExtendedStat_2 {
|
|
|
194
194
|
|
|
195
195
|
declare interface IExtendedStatData {
|
|
196
196
|
name: string;
|
|
197
|
-
safeName: string;
|
|
198
197
|
[key: string]: number | string;
|
|
199
198
|
}
|
|
200
199
|
|
|
@@ -262,6 +261,7 @@ declare interface ILineChartProps<ChartType extends IBaseChartType> extends ILin
|
|
|
262
261
|
shouldReplaceMergeLines?: boolean;
|
|
263
262
|
xAxis?: XAXisComponentOption;
|
|
264
263
|
grid?: GridComponentOption;
|
|
264
|
+
isDarkMode?: boolean;
|
|
265
265
|
}
|
|
266
266
|
|
|
267
267
|
declare interface ILineChartTimeAxis {
|
|
@@ -358,7 +358,6 @@ export declare type IStatData<StatKey extends string> = {
|
|
|
358
358
|
[key in StatKey]: string;
|
|
359
359
|
} & {
|
|
360
360
|
name: string;
|
|
361
|
-
safeName: string;
|
|
362
361
|
};
|
|
363
362
|
|
|
364
363
|
declare interface IStateProps {
|
|
@@ -447,7 +446,6 @@ declare interface ISwarmStat {
|
|
|
447
446
|
[key: `responseTimePercentile${number}`]: number;
|
|
448
447
|
numFailures: number;
|
|
449
448
|
numRequests: number;
|
|
450
|
-
safeName: string;
|
|
451
449
|
}
|
|
452
450
|
|
|
453
451
|
declare interface ISwarmState {
|
|
@@ -576,7 +574,7 @@ declare interface IWorkerCountResponse {
|
|
|
576
574
|
|
|
577
575
|
export declare function Layout({ children }: ILayout): JSX_2.Element;
|
|
578
576
|
|
|
579
|
-
export declare function LineChart<ChartType extends IBaseChartType>({ charts, title, lines, colors, chartValueFormatter, splitAxis, yAxisLabels, xAxis, grid, scatterplot, shouldReplaceMergeLines, }: ILineChartProps<ChartType>): JSX_2.Element;
|
|
577
|
+
export declare function LineChart<ChartType extends IBaseChartType>({ charts, title, lines, colors, chartValueFormatter, splitAxis, yAxisLabels, xAxis, grid, scatterplot, shouldReplaceMergeLines, isDarkMode, }: ILineChartProps<ChartType>): JSX_2.Element;
|
|
580
578
|
|
|
581
579
|
declare function LocustCloudTab(): JSX_2.Element;
|
|
582
580
|
|
|
@@ -701,8 +699,9 @@ export declare const SWARM_STATE: {
|
|
|
701
699
|
MISSING: string;
|
|
702
700
|
};
|
|
703
701
|
|
|
704
|
-
declare function SwarmCharts({ charts }: {
|
|
702
|
+
declare function SwarmCharts({ charts, isDarkMode, }: {
|
|
705
703
|
charts: ICharts;
|
|
704
|
+
isDarkMode?: boolean;
|
|
706
705
|
}): JSX_2.Element[];
|
|
707
706
|
|
|
708
707
|
export declare const SwarmForm: ConnectedComponent<typeof SwarmForm_2, {
|