@cagatayfdn/flora-components 0.0.31 → 0.0.32

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
@@ -531,6 +531,21 @@ declare interface InfiniteScrollProps {
531
531
  loadMore: () => void;
532
532
  }
533
533
 
534
+ export declare const InfoBoxList: ({ items, isLoading, className, }: InfoBoxListProps) => JSX.Element;
535
+
536
+ declare type InfoBoxListItem = {
537
+ label: string;
538
+ value: ReactNode;
539
+ copy?: boolean;
540
+ className?: string;
541
+ };
542
+
543
+ declare type InfoBoxListProps = {
544
+ items: InfoBoxListItem[];
545
+ isLoading?: boolean;
546
+ className?: string;
547
+ };
548
+
534
549
  export declare const Input: React_2.ForwardRefExoticComponent<{
535
550
  type?: "number" | "email" | "search" | "text" | "password" | "url" | "tel" | "hidden" | undefined;
536
551
  prefix?: ReactNode;
@@ -1135,6 +1150,19 @@ declare type TooltipProps = {
1135
1150
  tooltipVisible?: boolean;
1136
1151
  };
1137
1152
 
1153
+ export declare const TypographyText: (props: TypographyTextProps) => JSX.Element;
1154
+
1155
+ declare type TypographyTextProps = {
1156
+ children: string;
1157
+ id?: string;
1158
+ copyable?: boolean;
1159
+ className?: string;
1160
+ ellipsis?: boolean;
1161
+ href?: string;
1162
+ appearance?: CopyTextStatusEnum;
1163
+ tooltipContent?: ReactNode;
1164
+ };
1165
+
1138
1166
  export declare const useAuth: () => AuthContextType;
1139
1167
 
1140
1168
  export declare function useDisclosure(isOpenInit?: boolean): {