@sunrise-upc/mobile-prod-card 10.0.0 → 10.0.1-beta.0
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/Accessories/MultiItemAccessories/MultiItemAccessoriesSchema.d.ts +1 -0
- package/dist/cjs/components/Accessories/multiItemAccessoryStore/types.d.ts +1 -0
- package/dist/cjs/components/PriceCalculationSticky/PriceCalculationSticky.types.d.ts +1 -1
- package/dist/cjs/index.js +1 -1
- package/dist/esm/components/Accessories/MultiItemAccessories/MultiItemAccessoriesSchema.d.ts +1 -0
- package/dist/esm/components/Accessories/multiItemAccessoryStore/types.d.ts +1 -0
- package/dist/esm/components/PriceCalculationSticky/PriceCalculationSticky.types.d.ts +1 -1
- package/dist/esm/index.js +1 -1
- package/dist/index.d.ts +2 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -315,6 +315,7 @@ interface MultiItemAccessoriesSchema extends GenericSBProps {
|
|
|
315
315
|
winAccessoriesLimit: number;
|
|
316
316
|
winLimitWarningText: any;
|
|
317
317
|
winCheckoutUrl: any;
|
|
318
|
+
ratePlanAccessoriesLimit: number;
|
|
318
319
|
}
|
|
319
320
|
|
|
320
321
|
declare const MultiItemAccessoriesWithProvider: (props: ComponentWithContentProps<MultiItemAccessoriesSchema>) => JSX.Element;
|
|
@@ -411,7 +412,7 @@ interface PriceCalculationStickyProps {
|
|
|
411
412
|
content?: {
|
|
412
413
|
title?: string;
|
|
413
414
|
monthlyText?: string;
|
|
414
|
-
continueBtn?: FalconButtonSchema[];
|
|
415
|
+
continueBtn?: Partial<FalconButtonSchema>[];
|
|
415
416
|
};
|
|
416
417
|
onContinue?: () => void;
|
|
417
418
|
}
|