@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.
- package/dist/GraphMaker/constantsCommon.d.ts +2 -0
- package/dist/GraphMaker/dataBindAes.d.ts +7 -2
- package/dist/GraphMaker/store.d.ts +6 -0
- package/dist/GraphMaker/utils/createChartSettingsForRender/composeDiscreteSettings.d.ts +2 -0
- package/dist/graph-maker.js +18344 -18305
- package/dist/graph-maker.umd.cjs +944 -944
- package/package.json +2 -2
|
@@ -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
|
|
42
|
+
export declare const DEFAULT_LINE_SHAPE: LineType;
|
|
43
43
|
export declare const DEFAULT_LINE_WIDTH = 1;
|
|
44
|
-
export declare const DEFAULT_DOT_SHAPE
|
|
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
|
};
|