@dolanske/vui 1.14.10 → 1.14.12

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,10 @@
1
+ export declare const REGEX_HEX: RegExp;
2
+ export declare const REGEX_RGB_PARTIAL: RegExp;
3
+ /**
4
+ * Converts HEX color to RGB
5
+ */
6
+ export declare function hexToRgb(hex: string): string;
7
+ /**
8
+ * Converts RGB/HEX color to HEX
9
+ */
10
+ export declare function toHex(value: string, defaultValue?: string): string;