@databrainhq/plugin 0.14.47 → 0.14.49

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.
@@ -84,6 +84,7 @@ export declare const DATASET_STRING_HELPER_FUNCTIONS: {
84
84
  value: string;
85
85
  label: string;
86
86
  }[];
87
+ export declare const LEAST_USED_STRING_FUNCTIONS: string[];
87
88
  export declare const DATASET_NUMBER_HELPER_FUNCTIONS: {
88
89
  value: string;
89
90
  label: string;
@@ -87,6 +87,12 @@ export type CustomSettings = {
87
87
  hideYSplitLines?: boolean;
88
88
  hideXAxisLines?: boolean;
89
89
  hideYAxisLines?: boolean;
90
+ isEnableLabelFormatting?: boolean;
91
+ YaxislabelFormatters?: {
92
+ upperLimit: number;
93
+ lowerLimit: number;
94
+ label: string;
95
+ }[];
90
96
  barWidth?: number;
91
97
  barRadius?: number[];
92
98
  xRotation?: number;
@@ -244,12 +250,14 @@ export type LabelSettings = {
244
250
  family?: string;
245
251
  weight?: number;
246
252
  color?: string;
253
+ axisName?: string;
247
254
  };
248
255
  YAxisStyle?: {
249
256
  size?: number;
250
257
  family?: string;
251
258
  weight?: number;
252
259
  color?: string;
260
+ axisName?: string;
253
261
  };
254
262
  };
255
263
  export type AxisSettings = {