@mindly/ui-components 5.108.1 → 5.108.3

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.
@@ -12,6 +12,7 @@ type OnBoardingPaywallScreenPreviewFeatureProps = {
12
12
  onBuyTariff?: (tariffId: string) => void;
13
13
  isLoading?: boolean;
14
14
  termsOfUseLink?: string;
15
+ onTrackTariffEvent: (tariffData: OnBoardingPaywallScreenType['tariffs'][number], eventName: 'FUNNEL_PAYWALL_PLAN_INFO_VIEWED' | 'FUNNEL_PAYWALL_PURCHASE_BUTTON_CLICKED') => void;
15
16
  } & OnBoardingPaywallScreenType;
16
17
  declare const OnBoardingPaywallScreenPreviewFeature: FC<OnBoardingPaywallScreenPreviewFeatureProps>;
17
18
  export default OnBoardingPaywallScreenPreviewFeature;
@@ -11,7 +11,7 @@ export type SpecialistInfoColumnFeatureProps = {
11
11
  sessionDurationMinutes: number;
12
12
  currentPriceType: SupportedCurrency;
13
13
  className?: string;
14
- globalPersonalPrice?: number;
14
+ userBalance?: number;
15
15
  };
16
16
  declare const SpecialistInfoColumnFeature: FC<SpecialistInfoColumnFeatureProps>;
17
17
  export default SpecialistInfoColumnFeature;
@@ -19,4 +19,5 @@ export type TariffFeatureProps = {
19
19
  initialIsInfoOpen?: boolean;
20
20
  isPreview?: boolean;
21
21
  onSelect(id: string): void;
22
+ onInfoViewed?(id: string): void;
22
23
  };
@@ -34,4 +34,5 @@ export type UserType = {
34
34
  global_personal_price?: number;
35
35
  global_personal_price_currency?: SupportedCurrency;
36
36
  possible_price_filters?: number[];
37
+ balance?: number;
37
38
  };
@@ -16,5 +16,5 @@ export declare const WithoutExperience: Story;
16
16
  export declare const WithSuperSpecialistAndNewSpecialist: Story;
17
17
  export declare const WithSuperSpecialistAndNewSpecialistWithoutMatch: Story;
18
18
  export declare const WithUsdCurrency: Story;
19
- export declare const WithGlobalPersonalPrice: Story;
19
+ export declare const WithUserBalance: Story;
20
20
  export declare const FullPaid: Story;