kahuna-base-react-components 1.2.9 → 1.2.10

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.
@@ -1,4 +1,5 @@
1
1
  import React from "react";
2
+ import { TileDisabledFunc } from "react-calendar";
2
3
  import "./CalendarCustom.css";
3
4
  import "../../main.css";
4
5
  export interface KSelectDateProps {
@@ -20,6 +21,9 @@ export interface KSelectDateProps {
20
21
  position?: "top" | "bottom" | "left" | "right";
21
22
  align?: "top" | "bottom" | "left" | "right" | "center";
22
23
  hideBackdrop?: boolean;
24
+ isTileDisabled?: TileDisabledFunc;
25
+ applyUndefinedValue?: boolean;
26
+ buttonText?: string;
23
27
  }
24
28
  declare const KSelectDate: React.FC<KSelectDateProps>;
25
29
  export default KSelectDate;
@@ -3,7 +3,8 @@ import "../../main.css";
3
3
  export interface KTooltipProps {
4
4
  children: React.ReactNode;
5
5
  content: React.ReactNode;
6
- position?: string;
6
+ position?: "top" | "bottom" | "left" | "right";
7
+ align?: "top" | "bottom" | "left" | "right" | "center";
7
8
  backgroundColor?: string;
8
9
  width?: string;
9
10
  height?: string;
@@ -14,6 +15,8 @@ export interface KTooltipProps {
14
15
  showArrow?: boolean;
15
16
  arrowColor?: string;
16
17
  padding?: string;
18
+ marginTop?: string;
19
+ marginLeft?: string;
17
20
  }
18
21
  declare const KTooltip: React.FC<KTooltipProps>;
19
22
  export default KTooltip;