@postnord/pn-marketweb-components 2.4.18 → 2.4.19

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.
@@ -14,6 +14,13 @@ import { ProductGenericItem, ProxioPriceListGroupResponse } from "./components/w
14
14
  export namespace Components {
15
15
  interface PnAnimatedTile {
16
16
  }
17
+ interface PnAppBanner {
18
+ "appDescription": string;
19
+ "appName": string;
20
+ "appleStoreLink": string;
21
+ "ctaText": string;
22
+ "googleStoreLink": string;
23
+ }
17
24
  interface PnBonusProgressbar {
18
25
  "bonuspercentage": string;
19
26
  "currency": string;
@@ -827,6 +834,12 @@ declare global {
827
834
  prototype: HTMLPnAnimatedTileElement;
828
835
  new (): HTMLPnAnimatedTileElement;
829
836
  };
837
+ interface HTMLPnAppBannerElement extends Components.PnAppBanner, HTMLStencilElement {
838
+ }
839
+ var HTMLPnAppBannerElement: {
840
+ prototype: HTMLPnAppBannerElement;
841
+ new (): HTMLPnAppBannerElement;
842
+ };
830
843
  interface HTMLPnBonusProgressbarElement extends Components.PnBonusProgressbar, HTMLStencilElement {
831
844
  }
832
845
  var HTMLPnBonusProgressbarElement: {
@@ -1303,6 +1316,7 @@ declare global {
1303
1316
  };
1304
1317
  interface HTMLElementTagNameMap {
1305
1318
  "pn-animated-tile": HTMLPnAnimatedTileElement;
1319
+ "pn-app-banner": HTMLPnAppBannerElement;
1306
1320
  "pn-bonus-progressbar": HTMLPnBonusProgressbarElement;
1307
1321
  "pn-bonus-progressbar-level": HTMLPnBonusProgressbarLevelElement;
1308
1322
  "pn-breakpoints": HTMLPnBreakpointsElement;
@@ -1387,6 +1401,13 @@ declare global {
1387
1401
  declare namespace LocalJSX {
1388
1402
  interface PnAnimatedTile {
1389
1403
  }
1404
+ interface PnAppBanner {
1405
+ "appDescription"?: string;
1406
+ "appName"?: string;
1407
+ "appleStoreLink"?: string;
1408
+ "ctaText"?: string;
1409
+ "googleStoreLink"?: string;
1410
+ }
1390
1411
  interface PnBonusProgressbar {
1391
1412
  "bonuspercentage"?: string;
1392
1413
  "currency"?: string;
@@ -2169,6 +2190,7 @@ declare namespace LocalJSX {
2169
2190
  }
2170
2191
  interface IntrinsicElements {
2171
2192
  "pn-animated-tile": PnAnimatedTile;
2193
+ "pn-app-banner": PnAppBanner;
2172
2194
  "pn-bonus-progressbar": PnBonusProgressbar;
2173
2195
  "pn-bonus-progressbar-level": PnBonusProgressbarLevel;
2174
2196
  "pn-breakpoints": PnBreakpoints;
@@ -2255,6 +2277,7 @@ declare module "@stencil/core" {
2255
2277
  export namespace JSX {
2256
2278
  interface IntrinsicElements {
2257
2279
  "pn-animated-tile": LocalJSX.PnAnimatedTile & JSXBase.HTMLAttributes<HTMLPnAnimatedTileElement>;
2280
+ "pn-app-banner": LocalJSX.PnAppBanner & JSXBase.HTMLAttributes<HTMLPnAppBannerElement>;
2258
2281
  "pn-bonus-progressbar": LocalJSX.PnBonusProgressbar & JSXBase.HTMLAttributes<HTMLPnBonusProgressbarElement>;
2259
2282
  "pn-bonus-progressbar-level": LocalJSX.PnBonusProgressbarLevel & JSXBase.HTMLAttributes<HTMLPnBonusProgressbarLevelElement>;
2260
2283
  "pn-breakpoints": LocalJSX.PnBreakpoints & JSXBase.HTMLAttributes<HTMLPnBreakpointsElement>;