@cagatayfdn/flora-components 0.0.33 → 0.0.35

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;
@@ -602,6 +609,13 @@ declare type LabelProps = {
602
609
  appearance?: FormFieldAppearance;
603
610
  };
604
611
 
612
+ declare type LayoutProps = {
613
+ children: ReactNode;
614
+ breadcrumbs: any[];
615
+ className?: string;
616
+ defaultRoute?: string;
617
+ };
618
+
605
619
  declare function Legends({ items, colorMap }: LegendsProps): JSX_2.Element;
606
620
 
607
621
  declare type LegendsProps = {
@@ -660,6 +674,8 @@ declare type ModalProps = {
660
674
  appearance?: ThemeAppearance;
661
675
  } & ModalEvents;
662
676
 
677
+ export declare const NavigatorCard: (props: Props_2) => JSX_2.Element;
678
+
663
679
  export { NiceModal }
664
680
 
665
681
  export declare function NoResult(): JSX_2.Element;
@@ -703,6 +719,8 @@ declare type PagerProps = {
703
719
  appearance?: ThemeAppearance;
704
720
  };
705
721
 
722
+ export declare const PageWrapper: (props: LayoutProps) => JSX.Element;
723
+
706
724
  export declare const PermaLink: React_2.FC<PermalinkProps>;
707
725
 
708
726
  declare type PermalinkProps = {
@@ -719,7 +737,7 @@ declare type PermalinkProps = {
719
737
 
720
738
  export declare const PermFallBack: () => JSX_2.Element;
721
739
 
722
- export declare function Permission(props: Props_2): JSX_2.Element;
740
+ export declare function Permission(props: Props_3): JSX_2.Element;
723
741
 
724
742
  declare interface Permissions_2 {
725
743
  default: boolean;
@@ -940,6 +958,17 @@ declare type Props = {
940
958
  };
941
959
 
942
960
  declare type Props_2 = {
961
+ id: number;
962
+ to: string;
963
+ title: string;
964
+ content: string | Date;
965
+ icon?: any;
966
+ iconClassName?: string;
967
+ serviceCount: number | string;
968
+ appCount: number | string;
969
+ };
970
+
971
+ declare type Props_3 = {
943
972
  id: string;
944
973
  tooltipText?: string;
945
974
  } & CanProps;