@databrainhq/plugin 0.10.16 → 0.10.18

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.
@@ -0,0 +1,12 @@
1
+ import React from 'react';
2
+ type Props = {
3
+ name: string;
4
+ label?: string;
5
+ placeholder?: string;
6
+ defaultValue?: string;
7
+ value: string;
8
+ onChange: (value: string) => void;
9
+ className?: string;
10
+ };
11
+ declare const ColorField: React.FC<Props>;
12
+ export default ColorField;
@@ -22,3 +22,7 @@ export declare const ARRAY_TYPES: string[];
22
22
  export declare const BOOLEAN_TYPES: string[];
23
23
  export declare const configTabs: string[];
24
24
  export declare const DEFAULT_CHART_SETTINGS: ChartSettingsType;
25
+ export declare const FORMATTING_CONDITIONS_OPTIONS: {
26
+ value: string;
27
+ label: string;
28
+ }[];
@@ -0,0 +1,3 @@
1
+ import { ConditionalFormattingParam } from '@/types';
2
+ declare const conditionalFormattingStyles: ({ rules, value: columnValue, }: ConditionalFormattingParam) => any;
3
+ export default conditionalFormattingStyles;