kahuna-base-react-components 0.2.2 → 0.2.5

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.
@@ -15,6 +15,7 @@ export interface KButtonProps {
15
15
  padding?: string;
16
16
  shadowDisabled?: boolean;
17
17
  hoverBackground?: string;
18
+ fontWeight?: number;
18
19
  }
19
20
  declare const KButton: React.FC<KButtonProps>;
20
21
  export default KButton;
@@ -27,6 +27,9 @@ export interface KDropdownProps {
27
27
  textColor?: string;
28
28
  shadowDisabled?: boolean;
29
29
  menuBackground?: string;
30
+ padding?: string;
31
+ gap?: string;
32
+ showChosenOptionIcon?: boolean;
30
33
  }
31
34
  declare const KDropdown: React.FC<KDropdownProps>;
32
35
  export default KDropdown;
@@ -19,6 +19,10 @@ export interface KInputProps {
19
19
  rightIconClick?: () => void;
20
20
  accentColor?: string;
21
21
  hoverBackground?: string;
22
+ padding?: string;
23
+ gap?: string;
24
+ border?: string;
25
+ boxShadow?: string;
22
26
  }
23
27
  declare const KInput: React.FC<KInputProps>;
24
28
  export default KInput;
@@ -10,7 +10,6 @@ export interface KSliderProps {
10
10
  value?: number;
11
11
  disabled?: boolean;
12
12
  width?: string;
13
- height?: string;
14
13
  }
15
14
  declare const KSlider: React.FC<KSliderProps>;
16
15
  export default KSlider;
@@ -11,6 +11,7 @@ export interface KSpanProps {
11
11
  hoverText?: string;
12
12
  hoverTextColor?: string;
13
13
  hoverStyle?: CSSProperties;
14
+ textDecoration?: string;
14
15
  }
15
16
  declare const KSpan: React.FC<KSpanProps>;
16
17
  export default KSpan;