kahuna-base-react-components 1.3.6 → 1.3.8

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.
@@ -22,6 +22,8 @@ export interface KButtonProps {
22
22
  border?: string;
23
23
  hoverBorder?: string;
24
24
  activeBorder?: string;
25
+ fontSize?: number;
26
+ dataTestId?: string;
25
27
  }
26
28
  declare const KButton: React.FC<KButtonProps>;
27
29
  export default KButton;
@@ -47,6 +47,7 @@ export interface KDropdownProps {
47
47
  activeBorder?: string;
48
48
  onInputChange?: (text: string) => void;
49
49
  sortSelectedFirst?: boolean;
50
+ dataTestId?: string;
50
51
  }
51
52
  declare const KDropdown: React.FC<KDropdownProps>;
52
53
  export default KDropdown;
@@ -29,6 +29,7 @@ export interface KInputProps {
29
29
  checked?: boolean;
30
30
  hoverBorder?: string;
31
31
  activeBorder?: string;
32
+ dataTestId?: string;
32
33
  }
33
34
  declare const KInput: React.FC<KInputProps>;
34
35
  export default KInput;
@@ -11,6 +11,7 @@ export interface KSpanProps {
11
11
  hoverStyle?: CSSProperties;
12
12
  textDecoration?: string;
13
13
  ellipsis?: boolean;
14
+ dataTestId?: string;
14
15
  }
15
16
  declare const KSpan: React.FC<KSpanProps>;
16
17
  export default KSpan;
@@ -29,6 +29,7 @@ export interface KTextAreaProps {
29
29
  checked?: boolean;
30
30
  maxHeight?: number;
31
31
  clearTextOnPressedEnter?: boolean;
32
+ dataTestId?: string;
32
33
  }
33
34
  declare const KTextArea: React.FC<KTextAreaProps>;
34
35
  export default KTextArea;
@@ -12,6 +12,7 @@ export interface KTitleSpanProps {
12
12
  bold?: boolean;
13
13
  ellipsis?: boolean;
14
14
  tooltipProps?: Partial<KTooltipProps>;
15
+ dataTestId?: string;
15
16
  }
16
17
  declare const KTitleSpan: React.FC<KTitleSpanProps>;
17
18
  export default KTitleSpan;
@@ -18,6 +18,7 @@ export interface KTooltipProps {
18
18
  marginTop?: string;
19
19
  marginLeft?: string;
20
20
  hideDelay?: number;
21
+ dataTestId?: string;
21
22
  }
22
23
  declare const KTooltip: React.FC<KTooltipProps>;
23
24
  export default KTooltip;