@milaboratories/graph-maker 1.1.84 → 1.1.85

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.
@@ -175,6 +175,9 @@ export type LayersSettings = {
175
175
  lineType: LineTypeAes;
176
176
  opacity: number;
177
177
  trim: boolean;
178
+ showQuartiles: boolean;
179
+ quartilesLineStyle: LineType;
180
+ medianLineStyle: LineType;
178
181
  };
179
182
  bar: {
180
183
  fillColor: ColorAes | null;
@@ -160,6 +160,9 @@ export declare function createReactiveState(initialData: GraphMakerState, chartT
160
160
  };
161
161
  opacity: number;
162
162
  trim: boolean;
163
+ showQuartiles: boolean;
164
+ quartilesLineStyle: import('./components/AesSettings/types').LineType;
165
+ medianLineStyle: import('./components/AesSettings/types').LineType;
163
166
  };
164
167
  bar: {
165
168
  fillColor: string | {
@@ -486,6 +489,9 @@ export declare function factoryStore(reactiveState: Reactive<ReactiveState>, dat
486
489
  };
487
490
  opacity: number;
488
491
  trim: boolean;
492
+ showQuartiles: boolean;
493
+ quartilesLineStyle: import('./components/AesSettings/types').LineType;
494
+ medianLineStyle: import('./components/AesSettings/types').LineType;
489
495
  };
490
496
  bar: {
491
497
  fillColor: string | {
@@ -842,6 +848,9 @@ export declare function provideStore(initialState: GraphMakerState, dataStoreRef
842
848
  };
843
849
  opacity: number;
844
850
  trim: boolean;
851
+ showQuartiles: boolean;
852
+ quartilesLineStyle: import('./components/AesSettings/types').LineType;
853
+ medianLineStyle: import('./components/AesSettings/types').LineType;
845
854
  };
846
855
  bar: {
847
856
  fillColor: string | {
@@ -58,6 +58,9 @@ export declare function composeDiscreteSettings(settings: DiscreteSettings, reac
58
58
  type: "primaryGrouping" | "secondaryGrouping";
59
59
  } | undefined;
60
60
  boxWidth?: number | undefined;
61
+ showQuartiles?: boolean | undefined;
62
+ medianLineStyle?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
63
+ quartilesLineStyle?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
61
64
  } | undefined;
62
65
  stat?: {
63
66
  bandwidth?: number | undefined;
@@ -243,6 +246,9 @@ export declare function composeDiscreteSettings(settings: DiscreteSettings, reac
243
246
  box?: {
244
247
  show: boolean;
245
248
  } | undefined;
249
+ violin?: {
250
+ show: boolean;
251
+ } | undefined;
246
252
  dot?: {
247
253
  show: boolean;
248
254
  } | undefined;