@newskit-render/my-account 7.143.1-e321f7991.4 → 7.143.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.
- package/dist/cjs/Components/Sections/CancelSubscription/CancelSubscription.d.ts +1 -1
- package/dist/cjs/Components/Sections/CancelSubscription/CancelSubscription.js +53 -8
- package/dist/cjs/Components/Sections/CancelSubscription/CancelSubscription.js.map +1 -1
- package/dist/cjs/Components/Sections/CancelSubscription/types.d.ts +0 -2
- package/dist/cjs/Components/Templates/CancellationStepperRender.d.ts +0 -1
- package/dist/cjs/Components/Templates/CancellationStepperRender.js +0 -7
- package/dist/cjs/Components/Templates/CancellationStepperRender.js.map +1 -1
- package/dist/cjs/context/types.d.ts +1 -2
- package/dist/cjs/context/types.js.map +1 -1
- package/dist/cjs/index.d.ts +0 -1
- package/dist/cjs/pages/CancellationStepper/CancellationStepperContext.js +1 -77
- package/dist/cjs/pages/CancellationStepper/CancellationStepperContext.js.map +1 -1
- package/dist/cjs/pages/HolidayStop/HolidayStopContext.js +1 -1
- package/dist/cjs/pages/HolidayStop/HolidayStopContext.js.map +1 -1
- package/dist/cjs/pages/HolidayStopList/HolidayStopListContext.js +1 -1
- package/dist/cjs/pages/HolidayStopList/HolidayStopListContext.js.map +1 -1
- package/dist/cjs/pages/SubscriptionAndBilling/Sections/CancelSubscriptionSectionContext.js +0 -3
- package/dist/cjs/pages/SubscriptionAndBilling/Sections/CancelSubscriptionSectionContext.js.map +1 -1
- package/dist/esm/Components/Sections/CancelSubscription/CancelSubscription.d.ts +1 -1
- package/dist/esm/Components/Sections/CancelSubscription/CancelSubscription.js +55 -10
- package/dist/esm/Components/Sections/CancelSubscription/CancelSubscription.js.map +1 -1
- package/dist/esm/Components/Sections/CancelSubscription/types.d.ts +0 -2
- package/dist/esm/Components/Templates/CancellationStepperRender.d.ts +0 -1
- package/dist/esm/Components/Templates/CancellationStepperRender.js +0 -7
- package/dist/esm/Components/Templates/CancellationStepperRender.js.map +1 -1
- package/dist/esm/context/types.d.ts +1 -2
- package/dist/esm/context/types.js.map +1 -1
- package/dist/esm/index.d.ts +0 -1
- package/dist/esm/pages/CancellationStepper/CancellationStepperContext.js +2 -78
- package/dist/esm/pages/CancellationStepper/CancellationStepperContext.js.map +1 -1
- package/dist/esm/pages/HolidayStop/HolidayStopContext.js +1 -1
- package/dist/esm/pages/HolidayStop/HolidayStopContext.js.map +1 -1
- package/dist/esm/pages/HolidayStopList/HolidayStopListContext.js +1 -1
- package/dist/esm/pages/HolidayStopList/HolidayStopListContext.js.map +1 -1
- package/dist/esm/pages/SubscriptionAndBilling/Sections/CancelSubscriptionSectionContext.js +0 -3
- package/dist/esm/pages/SubscriptionAndBilling/Sections/CancelSubscriptionSectionContext.js.map +1 -1
- package/package.json +3 -3
- package/dist/cjs/Components/Sections/ContactSupport/ContactSupport.d.ts +0 -2
- package/dist/cjs/Components/Sections/ContactSupport/ContactSupport.js +0 -43
- package/dist/cjs/Components/Sections/ContactSupport/ContactSupport.js.map +0 -1
- package/dist/cjs/Components/Sections/ContactSupport/index.d.ts +0 -2
- package/dist/cjs/Components/Sections/ContactSupport/index.js +0 -19
- package/dist/cjs/Components/Sections/ContactSupport/index.js.map +0 -1
- package/dist/cjs/Components/Sections/ContactSupport/types.d.ts +0 -21
- package/dist/cjs/Components/Sections/ContactSupport/types.js +0 -3
- package/dist/cjs/Components/Sections/ContactSupport/types.js.map +0 -1
- package/dist/esm/Components/Sections/ContactSupport/ContactSupport.d.ts +0 -2
- package/dist/esm/Components/Sections/ContactSupport/ContactSupport.js +0 -36
- package/dist/esm/Components/Sections/ContactSupport/ContactSupport.js.map +0 -1
- package/dist/esm/Components/Sections/ContactSupport/index.d.ts +0 -2
- package/dist/esm/Components/Sections/ContactSupport/index.js +0 -3
- package/dist/esm/Components/Sections/ContactSupport/index.js.map +0 -1
- package/dist/esm/Components/Sections/ContactSupport/types.d.ts +0 -21
- package/dist/esm/Components/Sections/ContactSupport/types.js +0 -2
- package/dist/esm/Components/Sections/ContactSupport/types.js.map +0 -1
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
import { ComponentProps } from 'react';
|
|
2
|
-
import { GridLayoutItem, ButtonProps } from 'newskit';
|
|
3
|
-
import { TealiumEventContext, HeaderProps, ContentContainerProps as SharedContentContainerProps, ListItemType } from '@newskit-render/shared-components';
|
|
4
|
-
import { StepController } from '../../Templates/CancellationStepperRender';
|
|
5
|
-
export interface ContactMethodListItem extends Omit<ListItemType, 'default'> {
|
|
6
|
-
default: string | string[] | JSX.Element;
|
|
7
|
-
}
|
|
8
|
-
export interface ContactSupportContextProps {
|
|
9
|
-
tealiumContext?: TealiumEventContext;
|
|
10
|
-
contentContainerOverrides?: Partial<SharedContentContainerProps>;
|
|
11
|
-
showBackButton?: boolean;
|
|
12
|
-
header?: HeaderProps;
|
|
13
|
-
contactMethods?: ContactMethodListItem[];
|
|
14
|
-
continueButton?: ButtonProps & {
|
|
15
|
-
text: string;
|
|
16
|
-
};
|
|
17
|
-
continueButtonContainerOverrides?: ComponentProps<typeof GridLayoutItem>;
|
|
18
|
-
}
|
|
19
|
-
export interface ContactSupportProps extends ContactSupportContextProps {
|
|
20
|
-
onNextStep?: StepController;
|
|
21
|
-
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"types.js","sourceRoot":"","sources":["../../../../../src/Components/Sections/ContactSupport/types.ts"],"names":[],"mappings":""}
|