@sunrise-upc/mobile-prod-card 3.0.3-beta.3 → 3.0.3-beta.5
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/cjs/components/Breadcrumb/Breadcrumb.d.ts +3 -0
- package/dist/cjs/components/Breadcrumb/index.d.ts +1 -0
- package/dist/cjs/components/Breadcrumb/useScrollCheck.d.ts +4 -0
- package/dist/cjs/components/index.d.ts +1 -0
- package/dist/cjs/index.js +1 -1
- package/dist/cjs/utils/constants.d.ts +1 -0
- package/dist/esm/components/Breadcrumb/Breadcrumb.d.ts +3 -0
- package/dist/esm/components/Breadcrumb/index.d.ts +1 -0
- package/dist/esm/components/Breadcrumb/useScrollCheck.d.ts +4 -0
- package/dist/esm/components/index.d.ts +1 -0
- package/dist/esm/index.js +1 -1
- package/dist/esm/utils/constants.d.ts +1 -0
- package/dist/index.d.ts +3 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
@@ -175,6 +175,8 @@ declare const LincheckModal: FC<any>;
|
|
175
175
|
|
176
176
|
declare const BenefitWrapper: ({ content, metadata, setGenericErrorModalDetails, loginSuccess, basicConfigUrl, setLoginSuccess }: any) => JSX.Element;
|
177
177
|
|
178
|
+
declare const Breadcrumb: FC<any>;
|
179
|
+
|
178
180
|
interface LineTableBasicPropConfigSchema {
|
179
181
|
baseURL: string | '';
|
180
182
|
cartURL?: string | '';
|
@@ -231,4 +233,4 @@ declare class LinecheckBasicPropConfig {
|
|
231
233
|
static create: (p_config: LinecheckBasicPropConfigSchema) => void;
|
232
234
|
}
|
233
235
|
|
234
|
-
export { AssetPathPropConfig, AssetPathPropConfigSchema, BenefitWrapper, Button, Card, CardEntitlement, CarouselComp, LineTableBasicPropConfig, LineTableBasicPropConfigSchema, LinecheckBasicPropConfig, LinecheckBasicPropConfigSchema, LincheckModal as LinecheckModal, LoginModal, ProductTableV3, ProductTeaser, ProductTeaserPropConfig, ProductTeaserPropConfigSchema, StaticLineTable, StickyProductAnchor };
|
236
|
+
export { AssetPathPropConfig, AssetPathPropConfigSchema, BenefitWrapper, Breadcrumb, Button, Card, CardEntitlement, CarouselComp, LineTableBasicPropConfig, LineTableBasicPropConfigSchema, LinecheckBasicPropConfig, LinecheckBasicPropConfigSchema, LincheckModal as LinecheckModal, LoginModal, ProductTableV3, ProductTeaser, ProductTeaserPropConfig, ProductTeaserPropConfigSchema, StaticLineTable, StickyProductAnchor };
|
package/package.json
CHANGED