@milaboratories/graph-maker 1.1.64 → 1.1.66

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.
@@ -193,7 +193,7 @@ export type LayersSettings = {
193
193
  lineColor: ColorAes | null;
194
194
  dotShape: DotShapeAes;
195
195
  lineType: LineTypeAes;
196
- dotFill: ColorAes;
196
+ dotFill: ColorAes | null;
197
197
  opacity: number;
198
198
  };
199
199
  errorbar: {
@@ -201,7 +201,7 @@ export type LayersSettings = {
201
201
  interval: 'sd' | 'se' | '';
202
202
  lineColor: ColorAes | null;
203
203
  dotShape: DotShapeAes;
204
- dotFill: ColorAes;
204
+ dotFill: ColorAes | null;
205
205
  opacity: number;
206
206
  };
207
207
  sina: {
@@ -202,7 +202,7 @@ export declare function createReactiveState(initialData: GraphMakerState, chartT
202
202
  dotFill: string | {
203
203
  type: string;
204
204
  value?: string | undefined;
205
- };
205
+ } | null;
206
206
  opacity: number;
207
207
  };
208
208
  errorbar: {
@@ -219,7 +219,7 @@ export declare function createReactiveState(initialData: GraphMakerState, chartT
219
219
  dotFill: string | {
220
220
  type: string;
221
221
  value?: string | undefined;
222
- };
222
+ } | null;
223
223
  opacity: number;
224
224
  };
225
225
  sina: {
@@ -524,7 +524,7 @@ export declare function factoryStore(reactiveState: Reactive<ReactiveState>, dat
524
524
  dotFill: string | {
525
525
  type: string;
526
526
  value?: string | undefined;
527
- };
527
+ } | null;
528
528
  opacity: number;
529
529
  };
530
530
  errorbar: {
@@ -541,7 +541,7 @@ export declare function factoryStore(reactiveState: Reactive<ReactiveState>, dat
541
541
  dotFill: string | {
542
542
  type: string;
543
543
  value?: string | undefined;
544
- };
544
+ } | null;
545
545
  opacity: number;
546
546
  };
547
547
  sina: {
@@ -875,7 +875,7 @@ export declare function provideStore(initialState: GraphMakerState, dataStoreRef
875
875
  dotFill: string | {
876
876
  type: string;
877
877
  value?: string | undefined;
878
- };
878
+ } | null;
879
879
  opacity: number;
880
880
  };
881
881
  errorbar: {
@@ -892,7 +892,7 @@ export declare function provideStore(initialState: GraphMakerState, dataStoreRef
892
892
  dotFill: string | {
893
893
  type: string;
894
894
  value?: string | undefined;
895
- };
895
+ } | null;
896
896
  opacity: number;
897
897
  };
898
898
  sina: {