@sunrise-upc/mobile-prod-card 1.2.5-beta.10 → 1.2.5-beta.12
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/cjs/components/BenefitWrapper/BenefitValidate.d.ts +1 -1
- package/dist/cjs/components/BenefitWrapper/BenefitWrapper.d.ts +1 -1
- package/dist/cjs/components/BenefitWrapper/BenefitsValidateWrapper.d.ts +1 -1
- package/dist/cjs/components/StaticLineTable/StaticProductDatatypes.d.ts +3 -0
- package/dist/cjs/index.js +2 -2
- package/dist/esm/components/BenefitWrapper/BenefitValidate.d.ts +1 -1
- package/dist/esm/components/BenefitWrapper/BenefitWrapper.d.ts +1 -1
- package/dist/esm/components/BenefitWrapper/BenefitsValidateWrapper.d.ts +1 -1
- package/dist/esm/components/StaticLineTable/StaticProductDatatypes.d.ts +3 -0
- package/dist/esm/index.js +2 -2
- package/dist/index.d.ts +2 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
@@ -163,13 +163,14 @@ interface StaticLinetableSchema {
|
|
163
163
|
selectedOption?: string;
|
164
164
|
basicConfigUrl?: string;
|
165
165
|
selectedExistingOption?: any;
|
166
|
+
setLoginSuccess?: any;
|
166
167
|
}
|
167
168
|
|
168
169
|
declare const StaticLineTable: FC<StaticLinetableSchema>;
|
169
170
|
|
170
171
|
declare const LincheckModal: FC<any>;
|
171
172
|
|
172
|
-
declare const BenefitWrapper: ({ content, metadata, setGenericErrorModalDetails, loginSuccess, basicConfigUrl }: any) => JSX.Element;
|
173
|
+
declare const BenefitWrapper: ({ content, metadata, setGenericErrorModalDetails, loginSuccess, basicConfigUrl, setLoginSuccess }: any) => JSX.Element;
|
173
174
|
|
174
175
|
interface LineTableBasicPropConfigSchema {
|
175
176
|
baseURL: string | '';
|
package/package.json
CHANGED