locust-ui 2.37.2 → 2.37.3-next-15020310136

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.
@@ -405,7 +405,7 @@ declare interface ISwarmExceptionsResponse {
405
405
  exceptions: ISwarmException[];
406
406
  }
407
407
 
408
- declare interface ISwarmForm extends IDispatchProps, Pick<ISwarmState, 'allProfiles' | 'availableShapeClasses' | 'availableUserClasses' | 'extraOptions' | 'hideCommonOptions' | 'shapeUseCommonOptions' | 'host' | 'overrideHostWarning' | 'profile' | 'runTime' | 'showUserclassPicker' | 'spawnRate' | 'numUsers' | 'userCount'>, ISwarmFormProps {
408
+ declare interface ISwarmForm extends IDispatchProps, Pick<ISwarmState, 'allProfiles' | 'availableShapeClasses' | 'availableUserClasses' | 'extraOptions' | 'hideCommonOptions' | 'shapeUseCommonOptions' | 'host' | 'overrideHostWarning' | 'missingHostWarning' | 'isHostRequired' | 'profile' | 'runTime' | 'showUserclassPicker' | 'spawnRate' | 'numUsers' | 'userCount'>, ISwarmFormProps {
409
409
  }
410
410
 
411
411
  declare interface ISwarmFormInput extends Partial<Pick<ISwarmState, 'host' | 'profile' | 'spawnRate' | 'userCount'>> {
@@ -474,6 +474,8 @@ declare interface ISwarmState {
474
474
  locustfile: string;
475
475
  numUsers: number | null;
476
476
  overrideHostWarning: boolean;
477
+ missingHostWarning: boolean;
478
+ isHostRequired: boolean;
477
479
  percentilesToChart: number[];
478
480
  percentilesToStatistics: number[];
479
481
  runTime?: string | number;
@@ -718,7 +720,7 @@ context?: Context<ReactReduxContextValue<any, UnknownAction> | null> | undefined
718
720
  store?: Store | undefined;
719
721
  }>;
720
722
 
721
- declare function SwarmForm_2({ allProfiles, availableShapeClasses, availableUserClasses, host, extraOptions, hideCommonOptions, shapeUseCommonOptions, numUsers, userCount, overrideHostWarning, profile, runTime, setSwarm, showUserclassPicker, spawnRate, alert, isDisabled, isEditSwarm, onFormChange, onFormSubmit, advancedOptions, }: ISwarmForm): JSX_2.Element;
723
+ declare function SwarmForm_2({ allProfiles, availableShapeClasses, availableUserClasses, host, extraOptions, hideCommonOptions, shapeUseCommonOptions, numUsers, userCount, overrideHostWarning, missingHostWarning, profile, runTime, setSwarm, showUserclassPicker, spawnRate, alert, isDisabled, isEditSwarm, isHostRequired, onFormChange, onFormSubmit, advancedOptions, }: ISwarmForm): JSX_2.Element;
722
724
 
723
725
  export declare const SwarmMonitor: ConnectedComponent_2<typeof SwarmMonitor_2, {
724
726
  context?: Context_2<ReactReduxContextValue_2<any, UnknownAction_2> | null> | undefined;