@sunrise-upc/mobile-prod-card 7.5.1-beta.0 → 7.5.1-beta.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/NotificationToast/NotificationToast.d.ts +10 -0
- package/dist/cjs/components/index.d.ts +1 -0
- package/dist/cjs/index.js +1 -1
- package/dist/esm/components/NotificationToast/NotificationToast.d.ts +10 -0
- package/dist/esm/components/index.d.ts +1 -0
- package/dist/esm/index.js +3 -3
- package/dist/index.d.ts +10 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -227,6 +227,15 @@ interface OttServiceOptionsSmallPopupProps {
|
|
|
227
227
|
}
|
|
228
228
|
declare const OttServiceOptionsSmallPopup: ({ content, addOptionsCallBack, metadata, constants, mainContent, preSelectedOptions, optionsResponse, updateResponseList, showPrice, productData, offeringData, uniqueId, deviceFlow }: OttServiceOptionsSmallPopupProps) => JSX.Element;
|
|
229
229
|
|
|
230
|
+
interface NotificationToastProps {
|
|
231
|
+
title: string;
|
|
232
|
+
message: string;
|
|
233
|
+
show: boolean;
|
|
234
|
+
delay?: number;
|
|
235
|
+
onClose: () => void;
|
|
236
|
+
}
|
|
237
|
+
declare const NotificationToast: ({ title, message, show, onClose, delay }: NotificationToastProps) => JSX.Element;
|
|
238
|
+
|
|
230
239
|
interface LineTableBasicPropConfigSchema {
|
|
231
240
|
baseURL: string | '';
|
|
232
241
|
cartURL?: string | '';
|
|
@@ -316,4 +325,4 @@ declare class LoginBasicPropConfig {
|
|
|
316
325
|
getAPIServiceObject: () => ApiServiceV2;
|
|
317
326
|
}
|
|
318
327
|
|
|
319
|
-
export { AssetPathPropConfig, AssetPathPropConfigSchema, BenefitWrapper, Breadcrumb, Button, Card, CardEntitlement, CarouselComp, CheckCoverage, CoverageCheckModal, DpLinetableContainer as DpLinetable, HeroLoginBanner as HeroLogin, LineTableBasicPropConfig, LineTableBasicPropConfigSchema, LinecheckBasicPropConfig, LinecheckBasicPropConfigSchema, LincheckModal as LinecheckModal, LoginBasicPropConfig, LoginBasicPropConfigSchema, LoginModal as LoginModalV2, OttServiceOptionsSmallPopup, PreToPostSubsPopup as PretoPostSubsPopup, ProductTableV3, ProductTeaser, ProductTeaserPropConfig, ProductTeaserPropConfigSchema, ProgressionBar, StaticLineTable, StickyBottomSheet, StickyBottomSheetPropConfig, StickyBottomSheetPropConfigSchema, StickyProductAnchor };
|
|
328
|
+
export { AssetPathPropConfig, AssetPathPropConfigSchema, BenefitWrapper, Breadcrumb, Button, Card, CardEntitlement, CarouselComp, CheckCoverage, CoverageCheckModal, DpLinetableContainer as DpLinetable, HeroLoginBanner as HeroLogin, LineTableBasicPropConfig, LineTableBasicPropConfigSchema, LinecheckBasicPropConfig, LinecheckBasicPropConfigSchema, LincheckModal as LinecheckModal, LoginBasicPropConfig, LoginBasicPropConfigSchema, LoginModal as LoginModalV2, NotificationToast, OttServiceOptionsSmallPopup, PreToPostSubsPopup as PretoPostSubsPopup, ProductTableV3, ProductTeaser, ProductTeaserPropConfig, ProductTeaserPropConfigSchema, ProgressionBar, StaticLineTable, StickyBottomSheet, StickyBottomSheetPropConfig, StickyBottomSheetPropConfigSchema, StickyProductAnchor };
|
package/package.json
CHANGED