@cagatayfdn/flora-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/index.d.ts CHANGED
@@ -546,6 +546,13 @@ declare type InfoBoxListProps = {
546
546
  className?: string;
547
547
  };
548
548
 
549
+ export declare const InfoText: ({ text, className }: InfoTextProps) => JSX_2.Element;
550
+
551
+ declare type InfoTextProps = {
552
+ text: string;
553
+ className?: string;
554
+ };
555
+
549
556
  export declare const Input: React_2.ForwardRefExoticComponent<{
550
557
  type?: "number" | "email" | "search" | "text" | "password" | "url" | "tel" | "hidden" | undefined;
551
558
  prefix?: ReactNode;
@@ -660,6 +667,8 @@ declare type ModalProps = {
660
667
  appearance?: ThemeAppearance;
661
668
  } & ModalEvents;
662
669
 
670
+ export declare const NavigatorCard: (props: Props_2) => JSX_2.Element;
671
+
663
672
  export { NiceModal }
664
673
 
665
674
  export declare function NoResult(): JSX_2.Element;
@@ -719,7 +728,7 @@ declare type PermalinkProps = {
719
728
 
720
729
  export declare const PermFallBack: () => JSX_2.Element;
721
730
 
722
- export declare function Permission(props: Props_2): JSX_2.Element;
731
+ export declare function Permission(props: Props_3): JSX_2.Element;
723
732
 
724
733
  declare interface Permissions_2 {
725
734
  default: boolean;
@@ -940,6 +949,17 @@ declare type Props = {
940
949
  };
941
950
 
942
951
  declare type Props_2 = {
952
+ id: number;
953
+ to: string;
954
+ title: string;
955
+ content: string | Date;
956
+ icon?: any;
957
+ iconClassName?: string;
958
+ serviceCount: number | string;
959
+ appCount: number | string;
960
+ };
961
+
962
+ declare type Props_3 = {
943
963
  id: string;
944
964
  tooltipText?: string;
945
965
  } & CanProps;