@sunrise-upc/mobile-prod-card 8.6.3 → 8.6.5-beta.1
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/index.js +3 -3
- package/dist/cjs/utils/constants.d.ts +3 -0
- 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/index.js +3 -3
- package/dist/esm/utils/constants.d.ts +3 -0
- package/dist/index.d.ts +1 -0
- package/package.json +1 -1
|
@@ -90,3 +90,6 @@ export declare const CONTAIN = "contain";
|
|
|
90
90
|
export declare const COVER = "cover";
|
|
91
91
|
export declare const ACCESSORYLABEL = "accessoriesLabel";
|
|
92
92
|
export declare const MULTIPLEITEMACCESSORIES = "MULTIPLE_ITEM_ACCESSORIES";
|
|
93
|
+
export declare const MOBILERATEPLAN = "MOBILE";
|
|
94
|
+
export declare const INTERNET = "INTERNET";
|
|
95
|
+
export declare const TV = "TV";
|
package/dist/index.d.ts
CHANGED
|
@@ -311,6 +311,7 @@ interface MultiItemAccessoriesSchema extends GenericSBProps {
|
|
|
311
311
|
winAccessoriesLimit: number;
|
|
312
312
|
winLimitWarningText: any;
|
|
313
313
|
winCheckoutUrl: any;
|
|
314
|
+
ratePlanAccessoriesLimit: number;
|
|
314
315
|
}
|
|
315
316
|
|
|
316
317
|
declare const MultiItemAccessoriesWithProvider: (props: ComponentWithContentProps<MultiItemAccessoriesSchema>) => JSX.Element;
|