@mx-cartographer/insights-ui 1.16.14 → 1.16.15

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.
@@ -0,0 +1,7 @@
1
+ import { default as React } from 'react';
2
+ interface StyledToggleButtonProps {
3
+ children: React.ReactNode;
4
+ value: string;
5
+ }
6
+ export declare const StyledToggleButton: React.FC<StyledToggleButtonProps>;
7
+ export {};
@@ -0,0 +1,27 @@
1
+ import { TypographyTypeMap } from '@mui/material/Typography';
2
+ import { CommonBeatProps } from '../../../types/CommonBeat';
3
+ export interface SurveyTextProps {
4
+ component: string;
5
+ fontWeight: string | number;
6
+ variant: TypographyTypeMap['props']['variant'];
7
+ truncate: boolean;
8
+ }
9
+ export interface UserFeedbackContent {
10
+ continue: string;
11
+ description: string;
12
+ feedback: string;
13
+ feedbackPlaceholder: string;
14
+ feedbackSent: string;
15
+ question1: string;
16
+ question2: string;
17
+ question3: string;
18
+ stronglyAgree: string;
19
+ stronglyDisagree: string;
20
+ submitFeedback: string;
21
+ thankYou: string;
22
+ title: string;
23
+ }
24
+ export interface UserFeedbackProps extends CommonBeatProps {
25
+ content: UserFeedbackContent;
26
+ handleFeedbackSubmit: (data: any) => void;
27
+ }
@@ -0,0 +1,3 @@
1
+ import { default as React } from 'react';
2
+ import { UserFeedbackProps } from './Types';
3
+ export declare const UserFeedback: React.FC<UserFeedbackProps>;
@@ -0,0 +1 @@
1
+ export * from './UserFeedback';
@@ -15,3 +15,6 @@ export * from './SetUpDirectDeposit';
15
15
  export * from './SwitchDirectDeposit';
16
16
  export * from './UnifiedDeposit';
17
17
  export * from './WeeklyNoSpendDays';
18
+ export * from './BillAmountNotStandard';
19
+ export * from './MarketingHub';
20
+ export * from './UserFeedback';
@@ -3,7 +3,7 @@ import { Beat } from '../../../types/CommonBeat';
3
3
  import { CardHeaderProps } from './CardHeader';
4
4
  import { ContentAndDescriptionProps } from './ContentAndDescription';
5
5
  interface BeatCardProps {
6
- altLoadingText: string;
6
+ altLoadingText?: string;
7
7
  asteriskText?: string;
8
8
  beat: Beat;
9
9
  button?: React.ReactNode;