@databrainhq/plugin 0.15.12 → 0.15.13

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.
@@ -2,6 +2,7 @@ import React from 'react';
2
2
  type Props = {
3
3
  val: string | undefined;
4
4
  onClick: (value: string) => void;
5
+ isDisableCenterPositioning?: boolean;
5
6
  };
6
- declare const PositionContainer: ({ val, onClick }: Props) => React.JSX.Element;
7
+ declare const PositionContainer: ({ val, onClick, isDisableCenterPositioning, }: Props) => React.JSX.Element;
7
8
  export default PositionContainer;
@@ -8,6 +8,6 @@ export declare const Flex: React.MemoExoticComponent<({ direction, justify, widt
8
8
  height?: string | undefined;
9
9
  className?: string | undefined;
10
10
  alignItems?: "center" | "start" | "end" | "baseline" | "stretch" | null | undefined;
11
- flexWrap?: "reverse" | "wrap" | "nowrap" | null | undefined;
11
+ flexWrap?: "reverse" | "nowrap" | "wrap" | null | undefined;
12
12
  children: ReactNode;
13
13
  }) => React.JSX.Element>;
@@ -115,6 +115,15 @@ export type CustomSettings = {
115
115
  isEnableLabel?: boolean;
116
116
  size?: string;
117
117
  };
118
+ gaugeV2?: {
119
+ isEnableMarkerRange?: boolean;
120
+ isEnableMarkerValue?: boolean;
121
+ isEnableMarkerLabel?: boolean;
122
+ isEnableLegendRange?: boolean;
123
+ legendSize?: number;
124
+ markerSize?: number;
125
+ legendPosition?: string;
126
+ };
118
127
  repulsion?: number;
119
128
  markers?: {
120
129
  isEnableMax?: boolean;