@mindly/ui-components 5.102.7 → 5.103.0-dev.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.
@@ -5,6 +5,8 @@ export type MindlyReviewFeatureProps = {
5
5
  locale: string;
6
6
  linkMapper: Record<string, string>;
7
7
  isCommentRequired?: boolean;
8
+ isInterviewEnabled?: boolean;
9
+ isInterviewNewVersion?: boolean;
8
10
  onModalAppeared?: () => void;
9
11
  onRateSubmited: (rate: number) => void;
10
12
  onCommentModalAppeared?: () => void;
@@ -12,6 +14,7 @@ export type MindlyReviewFeatureProps = {
12
14
  onTriggerStoreReview?: () => void;
13
15
  onPromocodeModalAppeared?: () => void;
14
16
  onInterviewSubmited?: () => void;
17
+ onModalClose?: () => void;
15
18
  t?: WithTranslation['t'];
16
19
  };
17
20
  declare const MindlyReviewFeature: React.FC<MindlyReviewFeatureProps>;
@@ -0,0 +1,7 @@
1
+ type Props = {
2
+ selections: Record<string, string[]>;
3
+ defaults?: Record<string, string>;
4
+ onChange(value: Record<string, string>): void;
5
+ };
6
+ declare const MobilePickerFeature: ({ selections, defaults, onChange, }: Props) => JSX.Element;
7
+ export default MobilePickerFeature;
@@ -0,0 +1 @@
1
+ export { default as MobilePickerFeature } from './MobilePickerFeature';
@@ -0,0 +1,7 @@
1
+ import * as React from 'react';
2
+ export declare const IconPaperPencil: React.FC<React.SVGAttributes<SVGElement> & {
3
+ primaryColor?: string;
4
+ secondaryColor?: string;
5
+ primaryLightColor?: string;
6
+ backgroundColor?: string;
7
+ }>;
@@ -40,6 +40,7 @@ export * from './IconGiftNew';
40
40
  export * from './IconCreditCard';
41
41
  export * from './IconQuestion';
42
42
  export * from './IconPaper';
43
+ export * from './IconPaperPencil';
43
44
  export * from './IconChat3d';
44
45
  export * from './IconChat3dSmaller';
45
46
  export * from './IconNotficationMuted';
@@ -0,0 +1,2 @@
1
+ declare const _default: () => JSX.Element;
2
+ export default _default;
@@ -0,0 +1,2 @@
1
+ declare const _default: () => JSX.Element;
2
+ export default _default;
@@ -0,0 +1,4 @@
1
+ import { FC } from 'react';
2
+ import { TestTypeProps } from './types';
3
+ declare const Input: FC<TestTypeProps>;
4
+ export default Input;
@@ -0,0 +1,4 @@
1
+ import { JSX } from '@ionic/core';
2
+ export interface TestTypeProps extends JSX.IonInput {
3
+ custom: string;
4
+ }