@mindly/ui-components 5.105.1 → 5.105.2

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.
@@ -1,7 +1,7 @@
1
1
  import React, { FC } from 'react';
2
2
  declare const TrustItem: FC<{
3
- title: string;
4
- description: string;
3
+ title: string | undefined;
4
+ description: string | undefined;
5
5
  icon: React.ReactNode;
6
6
  }>;
7
7
  export default TrustItem;
@@ -20,13 +20,13 @@ export declare const images: {
20
20
  time: string;
21
21
  verge: string;
22
22
  };
23
- export declare const compareItems: {
23
+ export declare const getCompareItems: (t?: any) => {
24
24
  id: string;
25
25
  label: string;
26
26
  hasInMindly: boolean;
27
27
  hasInCompetitors: boolean;
28
28
  }[];
29
- export declare const howItWorksItems: {
29
+ export declare const getHowItWorksItems: (t?: any) => {
30
30
  id: string;
31
31
  title: string;
32
32
  description: string;
@@ -8,4 +8,5 @@ export * from './specialistStatus';
8
8
  export * from './userCan';
9
9
  export * from './filter';
10
10
  export * from './session';
11
+ export * from './mock';
11
12
  export { ONBOARDING_THEME_DEFAULT_COLORS } from './onboarding';