@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.
- package/cjs/index-4199ff85.js +4 -0
- package/cjs/loader.cjs.js +1 -1
- package/cjs/pn-app-banner.cjs.entry.js +46 -0
- package/cjs/pn-market-web-components.cjs.js +1 -1
- package/collection/collection-manifest.json +1 -0
- package/collection/components/minor/pn-app-banner/pn-app-banner.css +35 -0
- package/collection/components/minor/pn-app-banner/pn-app-banner.js +141 -0
- package/collection/components/minor/pn-app-banner/pn-app-banner.stories.js +31 -0
- package/components/index.d.ts +1 -0
- package/components/index.js +1 -0
- package/components/pn-app-banner.d.ts +11 -0
- package/components/pn-app-banner.js +68 -0
- package/esm/index-ee44c065.js +4 -0
- package/esm/loader.js +1 -1
- package/esm/pn-app-banner.entry.js +42 -0
- package/esm/pn-market-web-components.js +1 -1
- package/esm-es5/index-ee44c065.js +1 -1
- package/esm-es5/loader.js +1 -1
- package/esm-es5/pn-app-banner.entry.js +1 -0
- package/esm-es5/pn-market-web-components.js +1 -1
- package/package.json +1 -1
- package/pn-market-web-components/p-07e0a50f.entry.js +1 -0
- package/pn-market-web-components/p-6de99b6a.system.entry.js +1 -0
- package/pn-market-web-components/p-fcdb7381.system.js +1 -1
- package/pn-market-web-components/pn-market-web-components.esm.js +1 -1
- package/types/components/minor/pn-app-banner/pn-app-banner.d.ts +14 -0
- package/types/components.d.ts +23 -0
package/types/components.d.ts
CHANGED
|
@@ -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>;
|