@milaboratories/graph-maker 1.1.120 → 1.1.122

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.
@@ -242,6 +242,8 @@ export type AxesState = {
242
242
  scale: Scale;
243
243
  significantLinesStyle: LineType;
244
244
  sorting: Sorting;
245
+ allowNullPrimaryGroups: boolean;
246
+ allowNullSecondaryGroups: boolean;
245
247
  };
246
248
  axisY: {
247
249
  titleMode: AxisTitleMode;
@@ -39,12 +39,17 @@ interface AestheticValues {
39
39
  dotShape: DotShape;
40
40
  }
41
41
  export declare const DEFAULT_LINE_COLOR = "#110529";
42
- export declare const DEFAULT_LINE_SHAPE = "solid";
42
+ export declare const DEFAULT_LINE_SHAPE: LineType;
43
43
  export declare const DEFAULT_LINE_WIDTH = 1;
44
- export declare const DEFAULT_DOT_SHAPE = "21";
44
+ export declare const DEFAULT_DOT_SHAPE: DotShape;
45
45
  export declare const DEFAULT_DOT_SIZE = 3;
46
46
  export declare const DEFAULT_DOT_SIZE_CANVAS = 2;
47
47
  export declare const DEFAULT_DOT_RANGE: NumberRange;
48
+ export declare const DEFAULT_NA_AES: {
49
+ color: string;
50
+ lineShape: LineType;
51
+ dotShape: DotShape;
52
+ };
48
53
  export declare function updateAestheticMapping(values: (string | number)[], currentMapping?: AestheticMappingCategorical): AestheticMappingCategorical;
49
54
  export declare function createCategoricalMappingFromPalette(palette: Palette, values: (string | number)[]): AestheticMappingCategorical;
50
55
  export declare function createContinuousMappingFromPalette(palette: ContinuousPalette): AestheticMappingContinuous;
@@ -261,6 +261,8 @@ export declare function createReactiveState(initialData: GraphMakerState, chartT
261
261
  scale: import('./types.ts').Scale;
262
262
  significantLinesStyle: import('./components/AesSettings/types').LineType;
263
263
  sorting: import('./constantsCommon.ts').Sorting;
264
+ allowNullPrimaryGroups: boolean;
265
+ allowNullSecondaryGroups: boolean;
264
266
  };
265
267
  axisY: {
266
268
  titleMode: import('./types.ts').AxisTitleMode;
@@ -594,6 +596,8 @@ export declare function factoryStore(reactiveState: Reactive<ReactiveState>, dat
594
596
  scale: import('./types.ts').Scale;
595
597
  significantLinesStyle: import('./components/AesSettings/types').LineType;
596
598
  sorting: import('./constantsCommon.ts').Sorting;
599
+ allowNullPrimaryGroups: boolean;
600
+ allowNullSecondaryGroups: boolean;
597
601
  };
598
602
  axisY: {
599
603
  titleMode: import('./types.ts').AxisTitleMode;
@@ -957,6 +961,8 @@ export declare function provideStore(initialState: GraphMakerState, dataStoreRef
957
961
  scale: import('./types.ts').Scale;
958
962
  significantLinesStyle: import('./components/AesSettings/types').LineType;
959
963
  sorting: import('./constantsCommon.ts').Sorting;
964
+ allowNullPrimaryGroups: boolean;
965
+ allowNullSecondaryGroups: boolean;
960
966
  };
961
967
  axisY: {
962
968
  titleMode: import('./types.ts').AxisTitleMode;
@@ -354,6 +354,7 @@ export declare function composeDiscreteSettings(settings: DiscreteSettings, reac
354
354
  fillColor?: string | undefined;
355
355
  }> | undefined;
356
356
  order?: (string | number | null)[] | undefined;
357
+ allowNullGroup?: boolean | undefined;
357
358
  } | undefined;
358
359
  secondaryGrouping?: {
359
360
  columnName: {
@@ -372,6 +373,7 @@ export declare function composeDiscreteSettings(settings: DiscreteSettings, reac
372
373
  fillColor?: string | undefined;
373
374
  }> | undefined;
374
375
  order?: (string | number | null)[] | undefined;
376
+ allowNullGroup?: boolean | undefined;
375
377
  } | undefined;
376
378
  orientation?: "vertical" | "horizontal" | undefined;
377
379
  };