@factorialco/f0-react 1.249.0 → 1.250.0

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/f0.d.ts CHANGED
@@ -2869,6 +2869,10 @@ declare type ProductBlankslateProps = {
2869
2869
  label: string;
2870
2870
  icon: IconType;
2871
2871
  };
2872
+ promoTag?: {
2873
+ label: string;
2874
+ variant?: Variant;
2875
+ };
2872
2876
  };
2873
2877
 
2874
2878
  export declare function ProductCard({ title, description, onClick, onClose, isVisible, dismissable, trackVisibility, type, ...props }: ProductCardProps): false | JSX_2.Element;
@@ -2889,7 +2893,7 @@ export declare type ProductCardProps = {
2889
2893
  type?: never;
2890
2894
  });
2891
2895
 
2892
- export declare function ProductModal({ isOpen, onClose, title, image, benefits, errorMessage, successMessage, loadingState, nextSteps, closeLabel, primaryAction, modalTitle, modalModule, secondaryAction, portalContainer, tag, showResponseDialog, }: ProductModalProps): JSX_2.Element;
2896
+ export declare function ProductModal({ isOpen, onClose, title, image, benefits, errorMessage, successMessage, loadingState, nextSteps, closeLabel, primaryAction, modalTitle, modalModule, secondaryAction, portalContainer, tag, promoTag, showResponseDialog, }: ProductModalProps): JSX_2.Element;
2893
2897
 
2894
2898
  declare type ProductModalProps = {
2895
2899
  isOpen: boolean;
@@ -2924,6 +2928,10 @@ declare type ProductModalProps = {
2924
2928
  label: string;
2925
2929
  icon: IconType;
2926
2930
  };
2931
+ promoTag?: {
2932
+ label: string;
2933
+ variant?: Variant;
2934
+ };
2927
2935
  primaryAction?: Action_2;
2928
2936
  secondaryAction?: Action_2;
2929
2937
  portalContainer?: HTMLElement | null;