@rkosafo/cai.components 0.0.33 → 0.0.34

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.
@@ -808,6 +808,7 @@ export interface IButtonConfig {
808
808
  label: string;
809
809
  subLabel: string;
810
810
  }
811
+ export type IActionButtonKind = keyof typeof ACTION_BUTTON_KINDS;
811
812
  export interface ActionButtonProps {
812
813
  icon?: string;
813
814
  iconBgColor?: string;
@@ -820,7 +821,7 @@ export interface ActionButtonProps {
820
821
  showIconHover?: boolean;
821
822
  moreHeight?: boolean;
822
823
  href?: string | null;
823
- kind?: keyof typeof ACTION_BUTTON_KINDS;
824
+ kind?: IActionButtonKind;
824
825
  moreShadow?: boolean;
825
826
  onclick?: () => void;
826
827
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rkosafo/cai.components",
3
- "version": "0.0.33",
3
+ "version": "0.0.34",
4
4
  "files": [
5
5
  "dist",
6
6
  "!dist/**/*.test.*",