@sunrise-upc/mobile-prod-card 4.2.0 → 4.3.0
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/cjs/components/NewLineCheck/AdvanceSearch.d.ts +3 -0
- package/dist/cjs/components/NewLineCheck/CheckCoverage.d.ts +3 -0
- package/dist/cjs/components/NewLineCheck/CoverageCheckUtils.d.ts +10 -0
- package/dist/cjs/components/NewLineCheck/CovercheckWrapper.d.ts +3 -0
- package/dist/cjs/components/NewLineCheck/NewLCInput.d.ts +3 -0
- package/dist/cjs/components/NewLineCheck/SuccessCoverage.d.ts +3 -0
- package/dist/cjs/components/NewLineCheck/index.d.ts +1 -0
- package/dist/cjs/components/StaticLineTable/StaticProductDatatypes.d.ts +13 -0
- package/dist/cjs/components/index.d.ts +1 -0
- package/dist/cjs/index.js +2 -2
- package/dist/esm/components/NewLineCheck/AdvanceSearch.d.ts +3 -0
- package/dist/esm/components/NewLineCheck/CheckCoverage.d.ts +3 -0
- package/dist/esm/components/NewLineCheck/CoverageCheckUtils.d.ts +10 -0
- package/dist/esm/components/NewLineCheck/CovercheckWrapper.d.ts +3 -0
- package/dist/esm/components/NewLineCheck/NewLCInput.d.ts +3 -0
- package/dist/esm/components/NewLineCheck/SuccessCoverage.d.ts +3 -0
- package/dist/esm/components/NewLineCheck/index.d.ts +1 -0
- package/dist/esm/components/StaticLineTable/StaticProductDatatypes.d.ts +13 -0
- package/dist/esm/components/index.d.ts +1 -0
- package/dist/esm/index.js +2 -2
- package/dist/index.d.ts +6 -1
- package/package.json +2 -1
package/dist/index.d.ts
CHANGED
@@ -167,6 +167,9 @@ interface StaticLinetableSchema {
|
|
167
167
|
basicConfigUrl?: string;
|
168
168
|
selectedExistingOption?: any;
|
169
169
|
setLoginSuccess?: any;
|
170
|
+
deviceFlow?: any;
|
171
|
+
deviceFlowCallBack?: any;
|
172
|
+
ubRatePlanObj?: any;
|
170
173
|
}
|
171
174
|
|
172
175
|
declare const StaticLineTable: FC<StaticLinetableSchema>;
|
@@ -181,6 +184,8 @@ declare const PreToPostSubsPopup: ({ onClose, content, prepaid, }: any) => JSX.E
|
|
181
184
|
|
182
185
|
declare const HeroLoginBanner: FC<any>;
|
183
186
|
|
187
|
+
declare const CheckCoverage: FC<any>;
|
188
|
+
|
184
189
|
interface LineTableBasicPropConfigSchema {
|
185
190
|
baseURL: string | '';
|
186
191
|
cartURL?: string | '';
|
@@ -237,4 +242,4 @@ declare class LinecheckBasicPropConfig {
|
|
237
242
|
static create: (p_config: LinecheckBasicPropConfigSchema) => void;
|
238
243
|
}
|
239
244
|
|
240
|
-
export { AssetPathPropConfig, AssetPathPropConfigSchema, BenefitWrapper, Breadcrumb, Button, Card, CardEntitlement, CarouselComp, HeroLoginBanner as HeroLogin, LineTableBasicPropConfig, LineTableBasicPropConfigSchema, LinecheckBasicPropConfig, LinecheckBasicPropConfigSchema, LincheckModal as LinecheckModal, LoginModal, PreToPostSubsPopup as PretoPostSubsPopup, ProductTableV3, ProductTeaser, ProductTeaserPropConfig, ProductTeaserPropConfigSchema, StaticLineTable, StickyProductAnchor };
|
245
|
+
export { AssetPathPropConfig, AssetPathPropConfigSchema, BenefitWrapper, Breadcrumb, Button, Card, CardEntitlement, CarouselComp, CheckCoverage, HeroLoginBanner as HeroLogin, LineTableBasicPropConfig, LineTableBasicPropConfigSchema, LinecheckBasicPropConfig, LinecheckBasicPropConfigSchema, LincheckModal as LinecheckModal, LoginModal, PreToPostSubsPopup as PretoPostSubsPopup, ProductTableV3, ProductTeaser, ProductTeaserPropConfig, ProductTeaserPropConfigSchema, StaticLineTable, StickyProductAnchor };
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@sunrise-upc/mobile-prod-card",
|
3
|
-
"version": "4.
|
3
|
+
"version": "4.3.0",
|
4
4
|
"description": "Starter project to create reusable functional component",
|
5
5
|
"main": "dist/cjs/index.js",
|
6
6
|
"module": "dist/esm/index.js",
|
@@ -19,6 +19,7 @@
|
|
19
19
|
"release:major": "npm version major && npm publish --access public --tag latest",
|
20
20
|
"release:minor": "npm version minor && npm publish --access public --tag latest",
|
21
21
|
"release:patch": "npm version patch && npm publish --access public --tag latest",
|
22
|
+
"release:prepatch": "npm version prepatch --preid=beta && npm publish --access public --tag latest",
|
22
23
|
"release:prerelease": "npm version prerelease --preid=beta && npm publish --access public --tag latest"
|
23
24
|
},
|
24
25
|
"repository": {
|