@sunrise-upc/mobile-prod-card 8.2.2-beta.11 → 8.2.2-beta.13
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/esm/index.js +1 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/index.d.ts +13 -4
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import React, { MouseEventHandler, FC, JSX } from 'react';
|
|
1
|
+
import React, { MouseEventHandler, FC, JSX as JSX$1 } from 'react';
|
|
2
2
|
import { ApiServiceV2 } from '@sunrise-upc/ajax-lib';
|
|
3
3
|
|
|
4
4
|
interface ButtonProps {
|
|
@@ -191,7 +191,7 @@ declare const BenefitWrapper: ({ content, metadata, setGenericErrorModalDetails,
|
|
|
191
191
|
|
|
192
192
|
declare const Breadcrumb: FC<any>;
|
|
193
193
|
|
|
194
|
-
declare const PreToPostSubsPopup: ({ onClose, content, prepaid, }: any) => JSX.Element;
|
|
194
|
+
declare const PreToPostSubsPopup: ({ onClose, content, prepaid, }: any) => JSX$1.Element;
|
|
195
195
|
|
|
196
196
|
declare const HeroLoginBanner: FC<any>;
|
|
197
197
|
|
|
@@ -242,7 +242,7 @@ type ProgressionBarProps = {
|
|
|
242
242
|
step: number;
|
|
243
243
|
steps: any[];
|
|
244
244
|
};
|
|
245
|
-
declare const ProgressionBar: ({ step, steps }: ProgressionBarProps) => JSX.Element;
|
|
245
|
+
declare const ProgressionBar: ({ step, steps }: ProgressionBarProps) => JSX$1.Element;
|
|
246
246
|
|
|
247
247
|
interface OttServiceOptionsSmallPopupProps {
|
|
248
248
|
content: any;
|
|
@@ -261,6 +261,15 @@ interface OttServiceOptionsSmallPopupProps {
|
|
|
261
261
|
}
|
|
262
262
|
declare const OttServiceOptionsSmallPopup: ({ content, addOptionsCallBack, metadata, constants, mainContent, preSelectedOptions, optionsResponse, updateResponseList, showPrice, productData, offeringData, uniqueId, deviceFlow }: OttServiceOptionsSmallPopupProps) => React.JSX.Element;
|
|
263
263
|
|
|
264
|
+
interface NotificationToastProps {
|
|
265
|
+
title: string;
|
|
266
|
+
message: string;
|
|
267
|
+
show: boolean;
|
|
268
|
+
delay?: number;
|
|
269
|
+
onClose: () => void;
|
|
270
|
+
}
|
|
271
|
+
declare const NotificationToast: ({ title, message, show, onClose, delay }: NotificationToastProps) => JSX.Element;
|
|
272
|
+
|
|
264
273
|
interface LineTableBasicPropConfigSchema {
|
|
265
274
|
baseURL: string | '';
|
|
266
275
|
cartURL?: string | '';
|
|
@@ -363,5 +372,5 @@ declare class StickyBottomSheetPropConfig {
|
|
|
363
372
|
static create: (p_config: StickyBottomSheetPropConfigSchema) => void;
|
|
364
373
|
}
|
|
365
374
|
|
|
366
|
-
export { AssetPathPropConfig, BenefitWrapper, Breadcrumb, Button, Card, CardEntitlement, CarouselComp, CheckCoverage, CoverageCheckModal, DeviceCards as DeviceCard, DevicePropConfig, DpLinetableContainer as DpLinetable, FreshProductBannerHome, HeroLoginBanner as HeroLogin, LineTableBasicPropConfig, LinecheckBasicPropConfig, LincheckModal as LinecheckModal, LoginBasicPropConfig, LoginModal as LoginModalV2, OttServiceOptionsSmallPopup, PreToPostSubsPopup as PretoPostSubsPopup, ProductTableV3, ProductTeaser, ProductTeaserPropConfig, ProgressionBar, StaticLineTable, StickyBottomSheet, StickyBottomSheetPropConfig, StickyProductAnchor };
|
|
375
|
+
export { AssetPathPropConfig, BenefitWrapper, Breadcrumb, Button, Card, CardEntitlement, CarouselComp, CheckCoverage, CoverageCheckModal, DeviceCards as DeviceCard, DevicePropConfig, DpLinetableContainer as DpLinetable, FreshProductBannerHome, HeroLoginBanner as HeroLogin, LineTableBasicPropConfig, LinecheckBasicPropConfig, LincheckModal as LinecheckModal, LoginBasicPropConfig, LoginModal as LoginModalV2, NotificationToast, OttServiceOptionsSmallPopup, PreToPostSubsPopup as PretoPostSubsPopup, ProductTableV3, ProductTeaser, ProductTeaserPropConfig, ProgressionBar, StaticLineTable, StickyBottomSheet, StickyBottomSheetPropConfig, StickyProductAnchor };
|
|
367
376
|
export type { AssetPathPropConfigSchema, DevicePropSchema, LineTableBasicPropConfigSchema, LinecheckBasicPropConfigSchema, LoginBasicPropConfigSchema, ProductTeaserPropConfigSchema, StickyBottomSheetPropConfigSchema };
|