@1urso/generic-editor 0.1.21 → 0.1.23

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,11 @@
1
+ import { default as React } from 'react';
2
+ interface ColorPickerContentProps {
3
+ color: string;
4
+ onChange: (color: string) => void;
5
+ }
6
+ export declare const ColorPickerContent: React.FC<ColorPickerContentProps>;
7
+ interface ColorInputProps extends ColorPickerContentProps {
8
+ label?: string;
9
+ }
10
+ export declare const ColorInput: React.FC<ColorInputProps>;
11
+ export {};
@@ -0,0 +1,8 @@
1
+ import { default as React } from 'react';
2
+ import { IElement } from '../context';
3
+ interface DraggableElementProps {
4
+ element: IElement;
5
+ isSelected: boolean;
6
+ }
7
+ export declare const DraggableElement: React.FC<DraggableElementProps>;
8
+ export {};
@@ -0,0 +1,3 @@
1
+ import { IElementFormatting } from '../context';
2
+ export declare const formatValue: (value: any, formatting: IElementFormatting) => string;
3
+ export declare const checkCondition: (propValue: any, operator: string, ruleValue: string) => boolean;