@milaboratories/graph-maker 1.1.68 → 1.1.70
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 +3 -0
- package/dist/GraphMaker/store.d.ts +6 -0
- package/dist/GraphMaker/utils/createChartSettingsForRender/composeBubbleSettings.d.ts +2 -0
- package/dist/GraphMaker/utils/createChartSettingsForRender/composeHeatmapSettings.d.ts +2 -0
- package/dist/graph-maker.js +20173 -20141
- package/dist/graph-maker.umd.cjs +972 -972
- package/package.json +2 -2
|
@@ -218,6 +218,7 @@ export type LayersSettings = {
|
|
|
218
218
|
export declare const DEFAULT_LAYERS_SETTINGS: () => LayersSettings;
|
|
219
219
|
export declare function getDefaultLayersSettings(): LayersSettings;
|
|
220
220
|
export declare function getInitialLayersSettings(initialSettings?: DeepPartial<LayersSettings>): LayersSettings;
|
|
221
|
+
export type Sorting = 'asc' | 'desc';
|
|
221
222
|
export type AxesState = {
|
|
222
223
|
title: {
|
|
223
224
|
value: string;
|
|
@@ -236,6 +237,7 @@ export type AxesState = {
|
|
|
236
237
|
ticks: boolean;
|
|
237
238
|
scale: Scale;
|
|
238
239
|
significantLinesStyle: LineType;
|
|
240
|
+
sorting: Sorting;
|
|
239
241
|
};
|
|
240
242
|
axisY: {
|
|
241
243
|
titleMode: AxisTitleMode;
|
|
@@ -245,6 +247,7 @@ export type AxesState = {
|
|
|
245
247
|
ticks: boolean;
|
|
246
248
|
scale: Scale;
|
|
247
249
|
significantLinesStyle: LineType;
|
|
250
|
+
sorting: Sorting;
|
|
248
251
|
};
|
|
249
252
|
legend: {};
|
|
250
253
|
other: {
|
|
@@ -257,6 +257,7 @@ export declare function createReactiveState(initialData: GraphMakerState, chartT
|
|
|
257
257
|
ticks: boolean;
|
|
258
258
|
scale: import('./types.ts').Scale;
|
|
259
259
|
significantLinesStyle: import('./components/AesSettings/types').LineType;
|
|
260
|
+
sorting: import('./constantsCommon.ts').Sorting;
|
|
260
261
|
};
|
|
261
262
|
axisY: {
|
|
262
263
|
titleMode: import('./types.ts').AxisTitleMode;
|
|
@@ -266,6 +267,7 @@ export declare function createReactiveState(initialData: GraphMakerState, chartT
|
|
|
266
267
|
ticks: boolean;
|
|
267
268
|
scale: import('./types.ts').Scale;
|
|
268
269
|
significantLinesStyle: import('./components/AesSettings/types').LineType;
|
|
270
|
+
sorting: import('./constantsCommon.ts').Sorting;
|
|
269
271
|
};
|
|
270
272
|
legend: {};
|
|
271
273
|
other: {
|
|
@@ -579,6 +581,7 @@ export declare function factoryStore(reactiveState: Reactive<ReactiveState>, dat
|
|
|
579
581
|
ticks: boolean;
|
|
580
582
|
scale: import('./types.ts').Scale;
|
|
581
583
|
significantLinesStyle: import('./components/AesSettings/types').LineType;
|
|
584
|
+
sorting: import('./constantsCommon.ts').Sorting;
|
|
582
585
|
};
|
|
583
586
|
axisY: {
|
|
584
587
|
titleMode: import('./types.ts').AxisTitleMode;
|
|
@@ -588,6 +591,7 @@ export declare function factoryStore(reactiveState: Reactive<ReactiveState>, dat
|
|
|
588
591
|
ticks: boolean;
|
|
589
592
|
scale: import('./types.ts').Scale;
|
|
590
593
|
significantLinesStyle: import('./components/AesSettings/types').LineType;
|
|
594
|
+
sorting: import('./constantsCommon.ts').Sorting;
|
|
591
595
|
};
|
|
592
596
|
legend: {};
|
|
593
597
|
other: {
|
|
@@ -931,6 +935,7 @@ export declare function provideStore(initialState: GraphMakerState, dataStoreRef
|
|
|
931
935
|
ticks: boolean;
|
|
932
936
|
scale: import('./types.ts').Scale;
|
|
933
937
|
significantLinesStyle: import('./components/AesSettings/types').LineType;
|
|
938
|
+
sorting: import('./constantsCommon.ts').Sorting;
|
|
934
939
|
};
|
|
935
940
|
axisY: {
|
|
936
941
|
titleMode: import('./types.ts').AxisTitleMode;
|
|
@@ -940,6 +945,7 @@ export declare function provideStore(initialState: GraphMakerState, dataStoreRef
|
|
|
940
945
|
ticks: boolean;
|
|
941
946
|
scale: import('./types.ts').Scale;
|
|
942
947
|
significantLinesStyle: import('./components/AesSettings/types').LineType;
|
|
948
|
+
sorting: import('./constantsCommon.ts').Sorting;
|
|
943
949
|
};
|
|
944
950
|
legend: {};
|
|
945
951
|
other: {
|
|
@@ -68,6 +68,7 @@ export declare function composeBubbleSettings(settings: BubbleSettings, reactive
|
|
|
68
68
|
title?: string | undefined;
|
|
69
69
|
position?: "top" | "bottom" | undefined;
|
|
70
70
|
showTicks?: boolean | undefined;
|
|
71
|
+
sorting?: "asc" | "desc" | undefined;
|
|
71
72
|
showTitle?: boolean | undefined;
|
|
72
73
|
showAxisLabels?: boolean | undefined;
|
|
73
74
|
axisLabelsAngle?: 0 | 45 | 90 | undefined;
|
|
@@ -76,6 +77,7 @@ export declare function composeBubbleSettings(settings: BubbleSettings, reactive
|
|
|
76
77
|
title?: string | undefined;
|
|
77
78
|
position?: "left" | "right" | undefined;
|
|
78
79
|
showTicks?: boolean | undefined;
|
|
80
|
+
sorting?: "asc" | "desc" | undefined;
|
|
79
81
|
showTitle?: boolean | undefined;
|
|
80
82
|
showAxisLabels?: boolean | undefined;
|
|
81
83
|
axisLabelsAngle?: 0 | 45 | 90 | undefined;
|
|
@@ -66,6 +66,7 @@ export declare function composeHeatmapSettings(settings: HeatmapSettings, reacti
|
|
|
66
66
|
title?: string | undefined;
|
|
67
67
|
position?: "top" | "bottom" | undefined;
|
|
68
68
|
showTicks?: boolean | undefined;
|
|
69
|
+
sorting?: "asc" | "desc" | undefined;
|
|
69
70
|
showTitle?: boolean | undefined;
|
|
70
71
|
showAxisLabels?: boolean | undefined;
|
|
71
72
|
axisLabelsAngle?: 0 | 45 | 90 | undefined;
|
|
@@ -77,6 +78,7 @@ export declare function composeHeatmapSettings(settings: HeatmapSettings, reacti
|
|
|
77
78
|
title?: string | undefined;
|
|
78
79
|
position?: "left" | "right" | undefined;
|
|
79
80
|
showTicks?: boolean | undefined;
|
|
81
|
+
sorting?: "asc" | "desc" | undefined;
|
|
80
82
|
showTitle?: boolean | undefined;
|
|
81
83
|
showAxisLabels?: boolean | undefined;
|
|
82
84
|
axisLabelsAngle?: 0 | 45 | 90 | undefined;
|