@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.
- package/dist/types/index.d.ts +2 -1
- package/package.json +1 -1
package/dist/types/index.d.ts
CHANGED
|
@@ -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?:
|
|
824
|
+
kind?: IActionButtonKind;
|
|
824
825
|
moreShadow?: boolean;
|
|
825
826
|
onclick?: () => void;
|
|
826
827
|
}
|