@evergis/react 3.1.71 → 3.1.72

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.
@@ -3,3 +3,10 @@ export declare const hexToRgba: (hexCode: string, opacity?: number) => string;
3
3
  export declare const rgbToHex: (r: number, g: number, b: number) => string;
4
4
  export declare const decimalOpacityToHex: (opacity: number) => string;
5
5
  export declare const getGradientColors: (colorsCount?: number) => string[];
6
+ /**
7
+ * Adjusts color brightness
8
+ * @param color - hex color string (e.g., "#2196f3")
9
+ * @param lightnessAdjustment - lightness adjustment in HSL units (e.g., 5 or -5)
10
+ * @returns adjusted color in hex format
11
+ */
12
+ export declare const adjustColor: (color: string, lightnessAdjustment?: number) => string;
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "3.1.71",
2
+ "version": "3.1.72",
3
3
  "name": "@evergis/react",
4
4
  "author": "Everpoint",
5
5
  "license": "MIT",
@@ -83,5 +83,5 @@
83
83
  "swiper": "^8.3.2",
84
84
  "wkt": "^0.1.1"
85
85
  },
86
- "gitHead": "25ba4aed37c352c70e19074deed3ac3f818358ab"
86
+ "gitHead": "7a51b75ffe459331fb91edba68b1662d20e88b52"
87
87
  }