ferns-ui 0.39.3 → 0.39.4

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.
package/dist/Common.d.ts CHANGED
@@ -982,7 +982,7 @@ export interface IconButtonProps {
982
982
  iconColor: "darkGray" | ButtonColor | ThemeColor | Color;
983
983
  onClick: () => void;
984
984
  size?: IconSize;
985
- bgColor?: "transparent" | "transparentDarkGray" | "gray" | "lightGray" | "white" | "background" | "backgroundSecondary";
985
+ bgColor?: "transparent" | "transparentDarkGray" | "gray" | "lightGray" | "white" | "primary" | "background" | "backgroundSecondary";
986
986
  disabled?: boolean;
987
987
  selected?: boolean;
988
988
  withConfirmation?: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ferns-ui",
3
- "version": "0.39.3",
3
+ "version": "0.39.4",
4
4
  "main": "dist/index.js",
5
5
  "license": "Apache-2.0",
6
6
  "scripts": {
package/src/Common.ts CHANGED
@@ -2756,6 +2756,7 @@ export interface IconButtonProps {
2756
2756
  | "gray"
2757
2757
  | "lightGray"
2758
2758
  | "white"
2759
+ | "primary" // used for active states
2759
2760
  | "background"
2760
2761
  | "backgroundSecondary"; // default transparent
2761
2762
  disabled?: boolean;