@everymatrix/nuts-inbox-widget 1.55.0 → 1.56.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/dist/cjs/{index-43ce2388.js → index-c16396a3.js} +7 -41
- package/dist/cjs/loader.cjs.js +1 -1
- package/dist/cjs/nuts-inbox-widget.cjs.js +2 -2
- package/dist/cjs/nuts-inbox-widget_3.cjs.entry.js +1 -1
- package/dist/collection/collection-manifest.json +2 -2
- package/dist/esm/{index-90fc4db5.js → index-6a331097.js} +7 -41
- package/dist/esm/loader.js +2 -2
- package/dist/esm/nuts-inbox-widget.js +3 -3
- package/dist/esm/nuts-inbox-widget_3.entry.js +1 -1
- package/dist/nuts-inbox-widget/nuts-inbox-widget.esm.js +1 -1
- package/dist/nuts-inbox-widget/{p-3a5589e2.entry.js → p-5f8017ca.entry.js} +1 -1
- package/dist/nuts-inbox-widget/p-75ed38bb.js +2 -0
- package/dist/types/stencil-public-runtime.d.ts +0 -6
- package/package.json +1 -1
- package/dist/nuts-inbox-widget/p-6148a470.js +0 -2
|
@@ -24,7 +24,7 @@ const NAMESPACE = 'nuts-inbox-widget';
|
|
|
24
24
|
const BUILD = /* nuts-inbox-widget */ { allRenderFn: true, appendChildSlotFix: false, asyncLoading: true, asyncQueue: false, attachStyles: true, cloneNodeFix: false, cmpDidLoad: false, cmpDidRender: true, cmpDidUnload: false, cmpDidUpdate: false, cmpShouldUpdate: false, cmpWillLoad: true, cmpWillRender: false, cmpWillUpdate: false, connectedCallback: true, constructableCSS: true, cssAnnotations: true, devTools: false, disconnectedCallback: false, element: false, event: true, experimentalScopedSlotChanges: false, experimentalSlotFixes: false, formAssociated: false, hasRenderFn: true, hostListener: true, hostListenerTarget: true, hostListenerTargetBody: false, hostListenerTargetDocument: false, hostListenerTargetParent: false, hostListenerTargetWindow: true, hotModuleReplacement: false, hydrateClientSide: false, hydrateServerSide: false, hydratedAttribute: false, hydratedClass: true, hydratedSelectorName: "hydrated", initializeNextTick: false, invisiblePrehydration: true, isDebug: false, isDev: false, isTesting: false, lazyLoad: true, lifecycle: true, lifecycleDOMEvents: false, member: true, method: false, mode: false, observeAttribute: true, profile: false, prop: true, propBoolean: true, propMutable: true, propNumber: true, propString: true, reflect: true, scoped: false, scopedSlotTextContentFix: false, scriptDataOpts: false, shadowDelegatesFocus: false, shadowDom: true, slot: false, slotChildNodesFix: false, slotRelocation: false, state: true, style: true, svg: true, taskQueue: true, transformTagName: false, updatable: true, vdomAttribute: true, vdomClass: true, vdomFunctional: false, vdomKey: true, vdomListener: true, vdomPropOrAttr: true, vdomRef: true, vdomRender: true, vdomStyle: false, vdomText: true, vdomXlink: false, watchCallback: true };
|
|
25
25
|
|
|
26
26
|
/*
|
|
27
|
-
Stencil Client Platform v4.
|
|
27
|
+
Stencil Client Platform v4.19.2 | MIT Licensed | https://stenciljs.com
|
|
28
28
|
*/
|
|
29
29
|
var __defProp = Object.defineProperty;
|
|
30
30
|
var __export = (target, all) => {
|
|
@@ -383,31 +383,7 @@ var addStyle = (styleContainerNode, cmpMeta, mode) => {
|
|
|
383
383
|
if (nonce != null) {
|
|
384
384
|
styleElm.setAttribute("nonce", nonce);
|
|
385
385
|
}
|
|
386
|
-
|
|
387
|
-
if (styleContainerNode.nodeName === "HEAD") {
|
|
388
|
-
const preconnectLinks = styleContainerNode.querySelectorAll("link[rel=preconnect]");
|
|
389
|
-
const referenceNode2 = preconnectLinks.length > 0 ? preconnectLinks[preconnectLinks.length - 1].nextSibling : styleContainerNode.querySelector("style");
|
|
390
|
-
styleContainerNode.insertBefore(styleElm, referenceNode2);
|
|
391
|
-
} else if ("host" in styleContainerNode) {
|
|
392
|
-
if (supportsConstructableStylesheets) {
|
|
393
|
-
const stylesheet = new CSSStyleSheet();
|
|
394
|
-
stylesheet.replaceSync(style);
|
|
395
|
-
styleContainerNode.adoptedStyleSheets = [stylesheet, ...styleContainerNode.adoptedStyleSheets];
|
|
396
|
-
} else {
|
|
397
|
-
const existingStyleContainer = styleContainerNode.querySelector("style");
|
|
398
|
-
if (existingStyleContainer) {
|
|
399
|
-
existingStyleContainer.innerHTML = style + existingStyleContainer.innerHTML;
|
|
400
|
-
} else {
|
|
401
|
-
styleContainerNode.prepend(styleElm);
|
|
402
|
-
}
|
|
403
|
-
}
|
|
404
|
-
} else {
|
|
405
|
-
styleContainerNode.append(styleElm);
|
|
406
|
-
}
|
|
407
|
-
}
|
|
408
|
-
if (cmpMeta.$flags$ & 1 /* shadowDomEncapsulation */ && styleContainerNode.nodeName !== "HEAD") {
|
|
409
|
-
styleContainerNode.insertBefore(styleElm, null);
|
|
410
|
-
}
|
|
386
|
+
styleContainerNode.insertBefore(styleElm, styleContainerNode.querySelector("link"));
|
|
411
387
|
}
|
|
412
388
|
if (cmpMeta.$flags$ & 4 /* hasSlotRelocation */) {
|
|
413
389
|
styleElm.innerHTML += SLOT_FB_CSS;
|
|
@@ -430,7 +406,7 @@ var attachStyles = (hostRef) => {
|
|
|
430
406
|
const scopeId2 = addStyle(
|
|
431
407
|
elm.shadowRoot ? elm.shadowRoot : elm.getRootNode(),
|
|
432
408
|
cmpMeta);
|
|
433
|
-
if (flags & 10 /* needsScopedEncapsulation */
|
|
409
|
+
if (flags & 10 /* needsScopedEncapsulation */) {
|
|
434
410
|
elm["s-sc"] = scopeId2;
|
|
435
411
|
elm.classList.add(scopeId2 + "-h");
|
|
436
412
|
}
|
|
@@ -478,11 +454,7 @@ var setAccessor = (elm, memberName, oldValue, newValue, isSvg, flags) => {
|
|
|
478
454
|
if (memberName === "list") {
|
|
479
455
|
isProp = false;
|
|
480
456
|
} else if (oldValue == null || elm[memberName] != n) {
|
|
481
|
-
|
|
482
|
-
elm[memberName] = n;
|
|
483
|
-
} else {
|
|
484
|
-
elm.setAttribute(memberName, n);
|
|
485
|
-
}
|
|
457
|
+
elm[memberName] = n;
|
|
486
458
|
}
|
|
487
459
|
} else {
|
|
488
460
|
elm[memberName] = newValue;
|
|
@@ -562,9 +534,7 @@ var createElm = (oldParentVNode, newParentVNode, childIndex, parentElm) => {
|
|
|
562
534
|
{
|
|
563
535
|
updateElement(null, newVNode2, isSvgMode);
|
|
564
536
|
}
|
|
565
|
-
|
|
566
|
-
const isElementWithinShadowRoot = !rootNode.querySelector("body");
|
|
567
|
-
if (!isElementWithinShadowRoot && BUILD.scoped && isDef(scopeId) && elm["s-si"] !== scopeId) {
|
|
537
|
+
if (isDef(scopeId) && elm["s-si"] !== scopeId) {
|
|
568
538
|
elm.classList.add(elm["s-si"] = scopeId);
|
|
569
539
|
}
|
|
570
540
|
if (newVNode2.$children$) {
|
|
@@ -729,10 +699,7 @@ var patch = (oldVNode, newVNode2, isInitialRender = false) => {
|
|
|
729
699
|
elm.textContent = "";
|
|
730
700
|
}
|
|
731
701
|
addVnodes(elm, null, newVNode2, newChildren, 0, newChildren.length - 1);
|
|
732
|
-
} else if (
|
|
733
|
-
// don't do this on initial render as it can cause non-hydrated content to be removed
|
|
734
|
-
!isInitialRender && BUILD.updatable && oldChildren !== null
|
|
735
|
-
) {
|
|
702
|
+
} else if (oldChildren !== null) {
|
|
736
703
|
removeVnodes(oldChildren, 0, oldChildren.length - 1);
|
|
737
704
|
}
|
|
738
705
|
if (isSvgMode && tag === "svg") {
|
|
@@ -1007,8 +974,7 @@ var proxyComponent = (Cstr, cmpMeta, flags) => {
|
|
|
1007
974
|
if (this.hasOwnProperty(propName)) {
|
|
1008
975
|
newValue = this[propName];
|
|
1009
976
|
delete this[propName];
|
|
1010
|
-
} else if (prototype.hasOwnProperty(propName) && typeof this[propName] === "number" &&
|
|
1011
|
-
this[propName] == newValue) {
|
|
977
|
+
} else if (prototype.hasOwnProperty(propName) && typeof this[propName] === "number" && this[propName] == newValue) {
|
|
1012
978
|
return;
|
|
1013
979
|
} else if (propName == null) {
|
|
1014
980
|
const hostRef = getHostRef(this);
|
package/dist/cjs/loader.cjs.js
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
|
-
const index = require('./index-
|
|
5
|
+
const index = require('./index-c16396a3.js');
|
|
6
6
|
const appGlobals = require('./app-globals-3a1e7e63.js');
|
|
7
7
|
|
|
8
8
|
const defineCustomElements = async (win, options) => {
|
|
@@ -2,11 +2,11 @@
|
|
|
2
2
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
|
-
const index = require('./index-
|
|
5
|
+
const index = require('./index-c16396a3.js');
|
|
6
6
|
const appGlobals = require('./app-globals-3a1e7e63.js');
|
|
7
7
|
|
|
8
8
|
/*
|
|
9
|
-
Stencil Client Patch Browser v4.
|
|
9
|
+
Stencil Client Patch Browser v4.19.2 | MIT Licensed | https://stenciljs.com
|
|
10
10
|
*/
|
|
11
11
|
var patchBrowser = () => {
|
|
12
12
|
const importMeta = (typeof document === 'undefined' ? new (require('u' + 'rl').URL)('file:' + __filename).href : (document.currentScript && document.currentScript.src || new URL('nuts-inbox-widget.cjs.js', document.baseURI).href));
|
|
@@ -2,7 +2,7 @@ const NAMESPACE = 'nuts-inbox-widget';
|
|
|
2
2
|
const BUILD = /* nuts-inbox-widget */ { allRenderFn: true, appendChildSlotFix: false, asyncLoading: true, asyncQueue: false, attachStyles: true, cloneNodeFix: false, cmpDidLoad: false, cmpDidRender: true, cmpDidUnload: false, cmpDidUpdate: false, cmpShouldUpdate: false, cmpWillLoad: true, cmpWillRender: false, cmpWillUpdate: false, connectedCallback: true, constructableCSS: true, cssAnnotations: true, devTools: false, disconnectedCallback: false, element: false, event: true, experimentalScopedSlotChanges: false, experimentalSlotFixes: false, formAssociated: false, hasRenderFn: true, hostListener: true, hostListenerTarget: true, hostListenerTargetBody: false, hostListenerTargetDocument: false, hostListenerTargetParent: false, hostListenerTargetWindow: true, hotModuleReplacement: false, hydrateClientSide: false, hydrateServerSide: false, hydratedAttribute: false, hydratedClass: true, hydratedSelectorName: "hydrated", initializeNextTick: false, invisiblePrehydration: true, isDebug: false, isDev: false, isTesting: false, lazyLoad: true, lifecycle: true, lifecycleDOMEvents: false, member: true, method: false, mode: false, observeAttribute: true, profile: false, prop: true, propBoolean: true, propMutable: true, propNumber: true, propString: true, reflect: true, scoped: false, scopedSlotTextContentFix: false, scriptDataOpts: false, shadowDelegatesFocus: false, shadowDom: true, slot: false, slotChildNodesFix: false, slotRelocation: false, state: true, style: true, svg: true, taskQueue: true, transformTagName: false, updatable: true, vdomAttribute: true, vdomClass: true, vdomFunctional: false, vdomKey: true, vdomListener: true, vdomPropOrAttr: true, vdomRef: true, vdomRender: true, vdomStyle: false, vdomText: true, vdomXlink: false, watchCallback: true };
|
|
3
3
|
|
|
4
4
|
/*
|
|
5
|
-
Stencil Client Platform v4.
|
|
5
|
+
Stencil Client Platform v4.19.2 | MIT Licensed | https://stenciljs.com
|
|
6
6
|
*/
|
|
7
7
|
var __defProp = Object.defineProperty;
|
|
8
8
|
var __export = (target, all) => {
|
|
@@ -361,31 +361,7 @@ var addStyle = (styleContainerNode, cmpMeta, mode) => {
|
|
|
361
361
|
if (nonce != null) {
|
|
362
362
|
styleElm.setAttribute("nonce", nonce);
|
|
363
363
|
}
|
|
364
|
-
|
|
365
|
-
if (styleContainerNode.nodeName === "HEAD") {
|
|
366
|
-
const preconnectLinks = styleContainerNode.querySelectorAll("link[rel=preconnect]");
|
|
367
|
-
const referenceNode2 = preconnectLinks.length > 0 ? preconnectLinks[preconnectLinks.length - 1].nextSibling : styleContainerNode.querySelector("style");
|
|
368
|
-
styleContainerNode.insertBefore(styleElm, referenceNode2);
|
|
369
|
-
} else if ("host" in styleContainerNode) {
|
|
370
|
-
if (supportsConstructableStylesheets) {
|
|
371
|
-
const stylesheet = new CSSStyleSheet();
|
|
372
|
-
stylesheet.replaceSync(style);
|
|
373
|
-
styleContainerNode.adoptedStyleSheets = [stylesheet, ...styleContainerNode.adoptedStyleSheets];
|
|
374
|
-
} else {
|
|
375
|
-
const existingStyleContainer = styleContainerNode.querySelector("style");
|
|
376
|
-
if (existingStyleContainer) {
|
|
377
|
-
existingStyleContainer.innerHTML = style + existingStyleContainer.innerHTML;
|
|
378
|
-
} else {
|
|
379
|
-
styleContainerNode.prepend(styleElm);
|
|
380
|
-
}
|
|
381
|
-
}
|
|
382
|
-
} else {
|
|
383
|
-
styleContainerNode.append(styleElm);
|
|
384
|
-
}
|
|
385
|
-
}
|
|
386
|
-
if (cmpMeta.$flags$ & 1 /* shadowDomEncapsulation */ && styleContainerNode.nodeName !== "HEAD") {
|
|
387
|
-
styleContainerNode.insertBefore(styleElm, null);
|
|
388
|
-
}
|
|
364
|
+
styleContainerNode.insertBefore(styleElm, styleContainerNode.querySelector("link"));
|
|
389
365
|
}
|
|
390
366
|
if (cmpMeta.$flags$ & 4 /* hasSlotRelocation */) {
|
|
391
367
|
styleElm.innerHTML += SLOT_FB_CSS;
|
|
@@ -408,7 +384,7 @@ var attachStyles = (hostRef) => {
|
|
|
408
384
|
const scopeId2 = addStyle(
|
|
409
385
|
elm.shadowRoot ? elm.shadowRoot : elm.getRootNode(),
|
|
410
386
|
cmpMeta);
|
|
411
|
-
if (flags & 10 /* needsScopedEncapsulation */
|
|
387
|
+
if (flags & 10 /* needsScopedEncapsulation */) {
|
|
412
388
|
elm["s-sc"] = scopeId2;
|
|
413
389
|
elm.classList.add(scopeId2 + "-h");
|
|
414
390
|
}
|
|
@@ -456,11 +432,7 @@ var setAccessor = (elm, memberName, oldValue, newValue, isSvg, flags) => {
|
|
|
456
432
|
if (memberName === "list") {
|
|
457
433
|
isProp = false;
|
|
458
434
|
} else if (oldValue == null || elm[memberName] != n) {
|
|
459
|
-
|
|
460
|
-
elm[memberName] = n;
|
|
461
|
-
} else {
|
|
462
|
-
elm.setAttribute(memberName, n);
|
|
463
|
-
}
|
|
435
|
+
elm[memberName] = n;
|
|
464
436
|
}
|
|
465
437
|
} else {
|
|
466
438
|
elm[memberName] = newValue;
|
|
@@ -540,9 +512,7 @@ var createElm = (oldParentVNode, newParentVNode, childIndex, parentElm) => {
|
|
|
540
512
|
{
|
|
541
513
|
updateElement(null, newVNode2, isSvgMode);
|
|
542
514
|
}
|
|
543
|
-
|
|
544
|
-
const isElementWithinShadowRoot = !rootNode.querySelector("body");
|
|
545
|
-
if (!isElementWithinShadowRoot && BUILD.scoped && isDef(scopeId) && elm["s-si"] !== scopeId) {
|
|
515
|
+
if (isDef(scopeId) && elm["s-si"] !== scopeId) {
|
|
546
516
|
elm.classList.add(elm["s-si"] = scopeId);
|
|
547
517
|
}
|
|
548
518
|
if (newVNode2.$children$) {
|
|
@@ -707,10 +677,7 @@ var patch = (oldVNode, newVNode2, isInitialRender = false) => {
|
|
|
707
677
|
elm.textContent = "";
|
|
708
678
|
}
|
|
709
679
|
addVnodes(elm, null, newVNode2, newChildren, 0, newChildren.length - 1);
|
|
710
|
-
} else if (
|
|
711
|
-
// don't do this on initial render as it can cause non-hydrated content to be removed
|
|
712
|
-
!isInitialRender && BUILD.updatable && oldChildren !== null
|
|
713
|
-
) {
|
|
680
|
+
} else if (oldChildren !== null) {
|
|
714
681
|
removeVnodes(oldChildren, 0, oldChildren.length - 1);
|
|
715
682
|
}
|
|
716
683
|
if (isSvgMode && tag === "svg") {
|
|
@@ -985,8 +952,7 @@ var proxyComponent = (Cstr, cmpMeta, flags) => {
|
|
|
985
952
|
if (this.hasOwnProperty(propName)) {
|
|
986
953
|
newValue = this[propName];
|
|
987
954
|
delete this[propName];
|
|
988
|
-
} else if (prototype.hasOwnProperty(propName) && typeof this[propName] === "number" &&
|
|
989
|
-
this[propName] == newValue) {
|
|
955
|
+
} else if (prototype.hasOwnProperty(propName) && typeof this[propName] === "number" && this[propName] == newValue) {
|
|
990
956
|
return;
|
|
991
957
|
} else if (propName == null) {
|
|
992
958
|
const hostRef = getHostRef(this);
|
package/dist/esm/loader.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { b as bootstrapLazy } from './index-
|
|
2
|
-
export { s as setNonce } from './index-
|
|
1
|
+
import { b as bootstrapLazy } from './index-6a331097.js';
|
|
2
|
+
export { s as setNonce } from './index-6a331097.js';
|
|
3
3
|
import { g as globalScripts } from './app-globals-0f993ce5.js';
|
|
4
4
|
|
|
5
5
|
const defineCustomElements = async (win, options) => {
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import { p as promiseResolve, b as bootstrapLazy } from './index-
|
|
2
|
-
export { s as setNonce } from './index-
|
|
1
|
+
import { p as promiseResolve, b as bootstrapLazy } from './index-6a331097.js';
|
|
2
|
+
export { s as setNonce } from './index-6a331097.js';
|
|
3
3
|
import { g as globalScripts } from './app-globals-0f993ce5.js';
|
|
4
4
|
|
|
5
5
|
/*
|
|
6
|
-
Stencil Client Patch Browser v4.
|
|
6
|
+
Stencil Client Patch Browser v4.19.2 | MIT Licensed | https://stenciljs.com
|
|
7
7
|
*/
|
|
8
8
|
var patchBrowser = () => {
|
|
9
9
|
const importMeta = import.meta.url;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { r as registerInstance, c as createEvent, h, g as getElement } from './index-
|
|
1
|
+
import { r as registerInstance, c as createEvent, h, g as getElement } from './index-6a331097.js';
|
|
2
2
|
|
|
3
3
|
const DEFAULT_LANGUAGE = 'en';
|
|
4
4
|
const SUPPORTED_LANGUAGES = ['hu', 'en'];
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{p as n,b as i}from"./p-
|
|
1
|
+
import{p as n,b as i}from"./p-75ed38bb.js";export{s as setNonce}from"./p-75ed38bb.js";import{g as e}from"./p-e1255160.js";(()=>{const i=import.meta.url,e={};return""!==i&&(e.resourcesUrl=new URL(".",i).href),n(e)})().then((async n=>(await e(),i([["p-5f8017ca",[[1,"nuts-inbox-widget",{backendUrl:[513,"backend-url"],socketUrl:[513,"socket-url"],userId:[513,"user-id"],sessionId:[513,"session-id"],operatorId:[513,"operator-id"],subscriberId:[513,"subscriber-id"],deviceId:[513,"device-id"],language:[513],environment:[513],applicationIdentifier:[513,"application-identifier"],clientStyling:[1537,"client-styling"],clientStylingUrl:[513,"client-styling-url"],bellIconPosition:[513,"bell-icon-position"],notificationAction:[513,"notification-action"],translationUrl:[513,"translation-url"],isLoading:[32],popoverVisible:[32],unseenCount:[32],limitStylingAppends:[32]},[[8,"click","clickOutsideHandle"],[0,"allNotificationsRead","resetUnseenCount"]],{subscriberId:["initializeHandler"],operatorId:["initializeHandler"],applicationIdentifier:["initializeHandler"],deviceId:["initializeHandler"],clientStyling:["handleStylingChange"],clientStylingUrl:["handleStylingUrlChange"],translationUrl:["handleNewTranslations"]}],[0,"nuts-popover",{language:[513],userId:[513,"user-id"],operatorId:[513,"operator-id"],token:[513],sessionId:[513,"session-id"],backendUrl:[513,"backend-url"],unseenCount:[514,"unseen-count"],clientStylingUrl:[513,"client-styling-url"],notificationAction:[513,"notification-action"],clientStyling:[1537,"client-styling"],translationUrl:[513,"translation-url"],notifications:[32],isLoading:[32],showMarkAll:[32],limitStylingAppends:[32]},[[8,"messageDeleted","messageDeteledHandler"],[8,"newNotification","newNotificationHandler"]],{unseenCount:["unseenCountHandler"],clientStyling:["handleStylingChange"],clientStylingUrl:["handleStylingUrlChange"],translationUrl:["handleNewTranslations"]}],[0,"nuts-notification",{badge:[513],content:[513],date:[513],showSettings:[516,"show-settings"],read:[516],seen:[516],language:[513],sessionId:[513,"session-id"],subscriberId:[513,"subscriber-id"],userId:[513,"user-id"],messageId:[513,"message-id"],operatorId:[513,"operator-id"],token:[513],backendUrl:[513,"backend-url"],redirectUrl:[513,"redirect-url"],notificationAction:[513,"notification-action"],clientStylingUrl:[513,"client-styling-url"],translationUrl:[513,"translation-url"],clientStyling:[1537,"client-styling"],showSettingsModal:[32],messageSeen:[32],messageRead:[32],displayedContent:[32],limitStylingAppends:[32]},[[8,"allNotificationsRead","allNotificationsReadHandler"],[8,"settingsOpened","settingsOpenedHandler"]],{clientStyling:["handleStylingChange"],clientStylingUrl:["handleStylingUrlChange"],translationUrl:["handleNewTranslations"]}]]]],n))));
|