@cagatayfdn/flora-components 0.0.54 → 0.0.56

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/index.d.ts CHANGED
@@ -41,7 +41,7 @@ declare type AccordionProps = {
41
41
  className?: string;
42
42
  };
43
43
 
44
- export declare function ActionButton({ items }: ActionButtonProps): JSX_2.Element;
44
+ export declare function ActionButton({ items, isDisabled }: ActionButtonProps): JSX_2.Element;
45
45
 
46
46
  export declare type ActionButtonItems = {
47
47
  text: string;
@@ -51,6 +51,7 @@ export declare type ActionButtonItems = {
51
51
 
52
52
  export declare type ActionButtonProps = {
53
53
  items: ActionButtonItems[];
54
+ isDisabled?: boolean;
54
55
  };
55
56
 
56
57
  declare type Actiontype = {
@@ -370,7 +371,7 @@ export declare const DateFormats: {
370
371
 
371
372
  export declare const Datepicker: React_2.ForwardRefExoticComponent<{
372
373
  format?: string | undefined;
373
- mode?: "time" | "range" | "single" | "multiple" | "datetime" | undefined;
374
+ mode?: "single" | "multiple" | "range" | "time" | "datetime" | undefined;
374
375
  hasShortFormat?: boolean | undefined;
375
376
  isFormGroup?: boolean | undefined;
376
377
  minDate?: string | Date | undefined;
@@ -1444,11 +1445,12 @@ export declare type TooltipProps = {
1444
1445
  children: ReactNode;
1445
1446
  tooltipContent: ReactNode;
1446
1447
  contentClass?: string;
1447
- childClass?: string;
1448
1448
  className?: string;
1449
1449
  direction?: AppearanceDirection;
1450
1450
  ellipsis?: boolean;
1451
1451
  tooltipVisible?: boolean;
1452
+ copyText?: string;
1453
+ onClick?: () => void;
1452
1454
  };
1453
1455
 
1454
1456
  export declare const TypographyText: (props: TypographyTextProps) => JSX.Element;