@postnord/pn-marketweb-components 2.0.1 → 2.0.2
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/loader.cjs.js +1 -1
- package/cjs/pn-find-price.cjs.entry.js +2 -2
- package/cjs/pn-language-selector_9.cjs.entry.js +7 -1
- package/cjs/pn-market-web-components.cjs.js +1 -1
- package/cjs/pn-marketweb-siteheader.cjs.entry.js +1 -1
- package/cjs/pn-product-card_3.cjs.entry.js +3 -3
- package/collection/components/layout-components/pn-marketweb-siteheader/pn-marketweb-siteheader-search.js +25 -1
- package/collection/components/layout-components/pn-marketweb-siteheader/pn-marketweb-siteheader.js +2 -2
- package/collection/components/layout-components/pn-marketweb-siteheader/pn-marketweb-siteheader.stories.js +1 -0
- package/collection/components/widgets/pn-find-price/pn-find-price.css +9 -6
- package/collection/components/widgets/pn-find-price/pn-find-price.js +1 -1
- package/collection/components/widgets/pn-product-card/pn-product-card-info.css +8 -0
- package/collection/components/widgets/pn-product-card/pn-product-card-price.css +5 -3
- package/collection/components/widgets/pn-product-card/pn-product-card-price.js +2 -2
- package/custom-elements/index.js +14 -8
- package/esm/loader.js +1 -1
- package/esm/pn-find-price.entry.js +2 -2
- package/esm/pn-language-selector_9.entry.js +7 -1
- package/esm/pn-market-web-components.js +1 -1
- package/esm/pn-marketweb-siteheader.entry.js +1 -1
- package/esm/pn-product-card_3.entry.js +3 -3
- package/esm-es5/loader.js +1 -1
- package/esm-es5/pn-find-price.entry.js +1 -1
- package/esm-es5/pn-language-selector_9.entry.js +1 -1
- package/esm-es5/pn-market-web-components.js +1 -1
- package/esm-es5/pn-marketweb-siteheader.entry.js +1 -1
- package/esm-es5/pn-product-card_3.entry.js +1 -1
- package/package.json +1 -1
- package/pn-market-web-components/{p-5e78891a.entry.js → p-1be1dcc1.entry.js} +1 -1
- package/pn-market-web-components/{p-c0c52dc6.entry.js → p-23b4ba5b.entry.js} +1 -1
- package/pn-market-web-components/{p-c34db063.entry.js → p-5243b992.entry.js} +1 -1
- package/pn-market-web-components/{p-f4cb2104.system.entry.js → p-664245a1.system.entry.js} +1 -1
- package/pn-market-web-components/p-67887512.system.js +1 -1
- package/pn-market-web-components/{p-13eb4c66.system.entry.js → p-83baf538.system.entry.js} +1 -1
- package/pn-market-web-components/{p-fc6a09e0.system.entry.js → p-d13a78db.system.entry.js} +1 -1
- package/pn-market-web-components/{p-e474b831.entry.js → p-d58e3078.entry.js} +1 -1
- package/pn-market-web-components/{p-8fc7732d.system.entry.js → p-eb394e3b.system.entry.js} +1 -1
- package/pn-market-web-components/pn-market-web-components.esm.js +1 -1
- package/types/components/layout-components/pn-marketweb-siteheader/pn-marketweb-siteheader-search.d.ts +2 -0
- package/types/components.d.ts +8 -0
package/types/components.d.ts
CHANGED
|
@@ -292,6 +292,10 @@ export namespace Components {
|
|
|
292
292
|
interface PnMarketwebSiteheaderSearch {
|
|
293
293
|
"hideSearch": boolean;
|
|
294
294
|
"i18n": any;
|
|
295
|
+
/**
|
|
296
|
+
* Specifies which language we want to show (sv,da,fi,no,en)
|
|
297
|
+
*/
|
|
298
|
+
"language": string;
|
|
295
299
|
"primary": boolean;
|
|
296
300
|
"search": SiteHeaderSearch;
|
|
297
301
|
"showOnlyLink": boolean;
|
|
@@ -990,6 +994,10 @@ declare namespace LocalJSX {
|
|
|
990
994
|
interface PnMarketwebSiteheaderSearch {
|
|
991
995
|
"hideSearch"?: boolean;
|
|
992
996
|
"i18n"?: any;
|
|
997
|
+
/**
|
|
998
|
+
* Specifies which language we want to show (sv,da,fi,no,en)
|
|
999
|
+
*/
|
|
1000
|
+
"language"?: string;
|
|
993
1001
|
"primary"?: boolean;
|
|
994
1002
|
"search"?: SiteHeaderSearch;
|
|
995
1003
|
"showOnlyLink"?: boolean;
|