@milaboratories/graph-maker 1.1.68 → 1.1.69

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.
@@ -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: {