@qodo/design-system 0.20.10 → 0.20.12

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
@@ -139,7 +139,7 @@ declare type BaseSelectProps = {
139
139
  mode?: (typeof SELECT_MODE)[keyof typeof SELECT_MODE];
140
140
  variant?: (typeof SELECT_VARIANT)[keyof typeof SELECT_VARIANT];
141
141
  iconPosition?: "left" | "right";
142
- selectionIndicator?: "checkmark" | "checkbox";
142
+ selectionIndicator?: "checkmark" | "checkbox" | "none";
143
143
  onSearchChange?: (search: string) => void;
144
144
  renderValue?: (args: {
145
145
  displayValues: string[];
@@ -552,7 +552,7 @@ declare const INSIGHT_VARIANTS: {
552
552
  ACTIVE: string;
553
553
  };
554
554
 
555
- export declare function InsightCard({ title, description, caption, additionalContent, titleClassName: propTitleClassName, descriptionClassName: propDescriptionClassName, variant, className, icon, iconClassName: propIconClassName, size, }: InsightCardProps): JSX_2.Element;
555
+ export declare function InsightCard({ title, description, caption, additionalContent, titleClassName: propTitleClassName, descriptionClassName: propDescriptionClassName, variant, className, icon, iconClassName: propIconClassName, size, rightContent, }: InsightCardProps): JSX_2.Element;
556
556
 
557
557
  export declare type InsightCardProps = {
558
558
  title: ReactNode;
@@ -566,6 +566,7 @@ export declare type InsightCardProps = {
566
566
  icon?: ReactNode;
567
567
  iconClassName?: string;
568
568
  size?: (typeof INSIGHT_SIZES)[keyof typeof INSIGHT_SIZES];
569
+ rightContent?: ReactNode;
569
570
  };
570
571
 
571
572
  export declare type LoadingSkeletonProps = {