@everymatrix/user-login 1.77.11 → 1.77.13
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.
|
@@ -6518,6 +6518,7 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
|
|
|
6518
6518
|
overflow: hidden;
|
|
6519
6519
|
min-width: var(--lumo-size-m);
|
|
6520
6520
|
-webkit-user-select: none;
|
|
6521
|
+
-moz-user-select: none;
|
|
6521
6522
|
user-select: none;
|
|
6522
6523
|
--_focus-ring-color: var(--vaadin-focus-ring-color, var(--lumo-primary-color-50pct));
|
|
6523
6524
|
--_focus-ring-width: var(--vaadin-focus-ring-width, 2px);
|
|
@@ -6727,11 +6728,11 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
|
|
|
6727
6728
|
}
|
|
6728
6729
|
`,{moduleId:"lumo-tab"});/**
|
|
6729
6730
|
* @license
|
|
6730
|
-
* Copyright (c) 2017 -
|
|
6731
|
+
* Copyright (c) 2017 - 2024 Vaadin Ltd.
|
|
6731
6732
|
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
|
|
6732
6733
|
*/const hh=s=>class extends $r(s){ready(){super.ready(),this.setAttribute("role","tab");}_onKeyUp(e){const i=this.hasAttribute("active");if(super._onKeyUp(e),i){const o=this.querySelector("a");o&&o.click();}}};/**
|
|
6733
6734
|
* @license
|
|
6734
|
-
* Copyright (c) 2017 -
|
|
6735
|
+
* Copyright (c) 2017 - 2024 Vaadin Ltd.
|
|
6735
6736
|
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
|
|
6736
6737
|
*/const uh=p`
|
|
6737
6738
|
:host {
|
|
@@ -6754,7 +6755,7 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
|
|
|
6754
6755
|
}
|
|
6755
6756
|
`;/**
|
|
6756
6757
|
* @license
|
|
6757
|
-
* Copyright (c) 2017 -
|
|
6758
|
+
* Copyright (c) 2017 - 2024 Vaadin Ltd.
|
|
6758
6759
|
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
|
|
6759
6760
|
*/m("vaadin-tab",uh,{moduleId:"vaadin-tab-styles"});class ph extends N(x(hh(F(b)))){static get template(){return g`
|
|
6760
6761
|
<slot></slot>
|
|
@@ -6999,11 +7000,11 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
|
|
|
6999
7000
|
}
|
|
7000
7001
|
`,{moduleId:"lumo-tabs"});/**
|
|
7001
7002
|
* @license
|
|
7002
|
-
* Copyright (c) 2017 -
|
|
7003
|
+
* Copyright (c) 2017 - 2024 Vaadin Ltd.
|
|
7003
7004
|
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
|
|
7004
7005
|
*/const mh=s=>class extends Vr(Ur(s)){static get properties(){return {orientation:{value:"horizontal",type:String,reflectToAttribute:!0,sync:!0},selected:{value:0,type:Number}}}static get observers(){return ["__tabsItemsChanged(items)"]}constructor(){super(),this.__itemsResizeObserver=new ResizeObserver(()=>{setTimeout(()=>this._updateOverflow());});}get _scrollOffset(){return this._vertical?this._scrollerElement.offsetHeight:this._scrollerElement.offsetWidth}get _scrollerElement(){return this.$.scroll}get __direction(){return !this._vertical&&this.__isRTL?1:-1}ready(){super.ready(),this._scrollerElement.addEventListener("scroll",()=>this._updateOverflow()),this.setAttribute("role","tablist"),Ji(this,()=>{this._updateOverflow();});}_onResize(){this._updateOverflow();}__tabsItemsChanged(e){this.__itemsResizeObserver.disconnect(),(e||[]).forEach(i=>{this.__itemsResizeObserver.observe(i);}),this._updateOverflow();}_scrollForward(){const e=this._getNavigationButtonVisibleWidth("forward-button"),i=this._getNavigationButtonVisibleWidth("back-button"),o=this._scrollerElement.getBoundingClientRect(),n=[...this.items].reverse().find(c=>this._isItemVisible(c,e,i,o)).getBoundingClientRect(),l=20+this.shadowRoot.querySelector('[part="back-button"]').clientWidth;let d;if(this.__isRTL){const c=o.right-l;d=n.right-c;}else {const c=o.left+l;d=n.left-c;}-this.__direction*d<1&&(d=-this.__direction*(this._scrollOffset-l)),this._scroll(d);}_scrollBack(){const e=this._getNavigationButtonVisibleWidth("forward-button"),i=this._getNavigationButtonVisibleWidth("back-button"),o=this._scrollerElement.getBoundingClientRect(),n=this.items.find(c=>this._isItemVisible(c,e,i,o)).getBoundingClientRect(),l=20+this.shadowRoot.querySelector('[part="forward-button"]').clientWidth;let d;if(this.__isRTL){const c=o.left+l;d=n.left-c;}else {const c=o.right-l;d=n.right-c;}this.__direction*d<1&&(d=this.__direction*(this._scrollOffset-l)),this._scroll(d);}_isItemVisible(e,i,o,r){if(this._vertical)throw new Error("Visibility check is only supported for horizontal tabs.");const n=this.__isRTL?o:i,a=this.__isRTL?i:o,l=r.right-n,d=r.left+a,c=e.getBoundingClientRect();return l>Math.floor(c.left)&&d<Math.ceil(c.right)}_getNavigationButtonVisibleWidth(e){const i=this.shadowRoot.querySelector(`[part="${e}"]`);return window.getComputedStyle(i).opacity==="0"?0:i.clientWidth}_updateOverflow(){const e=this._vertical?this._scrollerElement.scrollTop:Hr(this._scrollerElement,this.getAttribute("dir")),i=this._vertical?this._scrollerElement.scrollHeight:this._scrollerElement.scrollWidth;let o=Math.floor(e)>1?"start":"";Math.ceil(e)<Math.ceil(i-this._scrollOffset)&&(o+=" end"),this.__direction===1&&(o=o.replace(/start|end/giu,r=>r==="start"?"end":"start")),o?this.setAttribute("overflow",o.trim()):this.removeAttribute("overflow");}};/**
|
|
7005
7006
|
* @license
|
|
7006
|
-
* Copyright (c) 2017 -
|
|
7007
|
+
* Copyright (c) 2017 - 2024 Vaadin Ltd.
|
|
7007
7008
|
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
|
|
7008
7009
|
*/const fh=p`
|
|
7009
7010
|
:host {
|
|
@@ -7083,7 +7084,7 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
|
|
|
7083
7084
|
}
|
|
7084
7085
|
`;/**
|
|
7085
7086
|
* @license
|
|
7086
|
-
* Copyright (c) 2017 -
|
|
7087
|
+
* Copyright (c) 2017 - 2024 Vaadin Ltd.
|
|
7087
7088
|
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
|
|
7088
7089
|
*/m("vaadin-tabs",fh,{moduleId:"vaadin-tabs-styles"});class _h extends mh(N(x(b))){static get template(){return g`
|
|
7089
7090
|
<div on-click="_scrollBack" part="back-button" aria-hidden="true"></div>
|
|
@@ -6514,6 +6514,7 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
|
|
|
6514
6514
|
overflow: hidden;
|
|
6515
6515
|
min-width: var(--lumo-size-m);
|
|
6516
6516
|
-webkit-user-select: none;
|
|
6517
|
+
-moz-user-select: none;
|
|
6517
6518
|
user-select: none;
|
|
6518
6519
|
--_focus-ring-color: var(--vaadin-focus-ring-color, var(--lumo-primary-color-50pct));
|
|
6519
6520
|
--_focus-ring-width: var(--vaadin-focus-ring-width, 2px);
|
|
@@ -6723,11 +6724,11 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
|
|
|
6723
6724
|
}
|
|
6724
6725
|
`,{moduleId:"lumo-tab"});/**
|
|
6725
6726
|
* @license
|
|
6726
|
-
* Copyright (c) 2017 -
|
|
6727
|
+
* Copyright (c) 2017 - 2024 Vaadin Ltd.
|
|
6727
6728
|
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
|
|
6728
6729
|
*/const hh=s=>class extends $r(s){ready(){super.ready(),this.setAttribute("role","tab");}_onKeyUp(e){const i=this.hasAttribute("active");if(super._onKeyUp(e),i){const o=this.querySelector("a");o&&o.click();}}};/**
|
|
6729
6730
|
* @license
|
|
6730
|
-
* Copyright (c) 2017 -
|
|
6731
|
+
* Copyright (c) 2017 - 2024 Vaadin Ltd.
|
|
6731
6732
|
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
|
|
6732
6733
|
*/const uh=p`
|
|
6733
6734
|
:host {
|
|
@@ -6750,7 +6751,7 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
|
|
|
6750
6751
|
}
|
|
6751
6752
|
`;/**
|
|
6752
6753
|
* @license
|
|
6753
|
-
* Copyright (c) 2017 -
|
|
6754
|
+
* Copyright (c) 2017 - 2024 Vaadin Ltd.
|
|
6754
6755
|
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
|
|
6755
6756
|
*/m("vaadin-tab",uh,{moduleId:"vaadin-tab-styles"});class ph extends N(x(hh(F(b)))){static get template(){return g`
|
|
6756
6757
|
<slot></slot>
|
|
@@ -6995,11 +6996,11 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
|
|
|
6995
6996
|
}
|
|
6996
6997
|
`,{moduleId:"lumo-tabs"});/**
|
|
6997
6998
|
* @license
|
|
6998
|
-
* Copyright (c) 2017 -
|
|
6999
|
+
* Copyright (c) 2017 - 2024 Vaadin Ltd.
|
|
6999
7000
|
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
|
|
7000
7001
|
*/const mh=s=>class extends Vr(Ur(s)){static get properties(){return {orientation:{value:"horizontal",type:String,reflectToAttribute:!0,sync:!0},selected:{value:0,type:Number}}}static get observers(){return ["__tabsItemsChanged(items)"]}constructor(){super(),this.__itemsResizeObserver=new ResizeObserver(()=>{setTimeout(()=>this._updateOverflow());});}get _scrollOffset(){return this._vertical?this._scrollerElement.offsetHeight:this._scrollerElement.offsetWidth}get _scrollerElement(){return this.$.scroll}get __direction(){return !this._vertical&&this.__isRTL?1:-1}ready(){super.ready(),this._scrollerElement.addEventListener("scroll",()=>this._updateOverflow()),this.setAttribute("role","tablist"),Ji(this,()=>{this._updateOverflow();});}_onResize(){this._updateOverflow();}__tabsItemsChanged(e){this.__itemsResizeObserver.disconnect(),(e||[]).forEach(i=>{this.__itemsResizeObserver.observe(i);}),this._updateOverflow();}_scrollForward(){const e=this._getNavigationButtonVisibleWidth("forward-button"),i=this._getNavigationButtonVisibleWidth("back-button"),o=this._scrollerElement.getBoundingClientRect(),n=[...this.items].reverse().find(c=>this._isItemVisible(c,e,i,o)).getBoundingClientRect(),l=20+this.shadowRoot.querySelector('[part="back-button"]').clientWidth;let d;if(this.__isRTL){const c=o.right-l;d=n.right-c;}else {const c=o.left+l;d=n.left-c;}-this.__direction*d<1&&(d=-this.__direction*(this._scrollOffset-l)),this._scroll(d);}_scrollBack(){const e=this._getNavigationButtonVisibleWidth("forward-button"),i=this._getNavigationButtonVisibleWidth("back-button"),o=this._scrollerElement.getBoundingClientRect(),n=this.items.find(c=>this._isItemVisible(c,e,i,o)).getBoundingClientRect(),l=20+this.shadowRoot.querySelector('[part="forward-button"]').clientWidth;let d;if(this.__isRTL){const c=o.left+l;d=n.left-c;}else {const c=o.right-l;d=n.right-c;}this.__direction*d<1&&(d=this.__direction*(this._scrollOffset-l)),this._scroll(d);}_isItemVisible(e,i,o,r){if(this._vertical)throw new Error("Visibility check is only supported for horizontal tabs.");const n=this.__isRTL?o:i,a=this.__isRTL?i:o,l=r.right-n,d=r.left+a,c=e.getBoundingClientRect();return l>Math.floor(c.left)&&d<Math.ceil(c.right)}_getNavigationButtonVisibleWidth(e){const i=this.shadowRoot.querySelector(`[part="${e}"]`);return window.getComputedStyle(i).opacity==="0"?0:i.clientWidth}_updateOverflow(){const e=this._vertical?this._scrollerElement.scrollTop:Hr(this._scrollerElement,this.getAttribute("dir")),i=this._vertical?this._scrollerElement.scrollHeight:this._scrollerElement.scrollWidth;let o=Math.floor(e)>1?"start":"";Math.ceil(e)<Math.ceil(i-this._scrollOffset)&&(o+=" end"),this.__direction===1&&(o=o.replace(/start|end/giu,r=>r==="start"?"end":"start")),o?this.setAttribute("overflow",o.trim()):this.removeAttribute("overflow");}};/**
|
|
7001
7002
|
* @license
|
|
7002
|
-
* Copyright (c) 2017 -
|
|
7003
|
+
* Copyright (c) 2017 - 2024 Vaadin Ltd.
|
|
7003
7004
|
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
|
|
7004
7005
|
*/const fh=p`
|
|
7005
7006
|
:host {
|
|
@@ -7079,7 +7080,7 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
|
|
|
7079
7080
|
}
|
|
7080
7081
|
`;/**
|
|
7081
7082
|
* @license
|
|
7082
|
-
* Copyright (c) 2017 -
|
|
7083
|
+
* Copyright (c) 2017 - 2024 Vaadin Ltd.
|
|
7083
7084
|
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
|
|
7084
7085
|
*/m("vaadin-tabs",fh,{moduleId:"vaadin-tabs-styles"});class _h extends mh(N(x(b))){static get template(){return g`
|
|
7085
7086
|
<div on-click="_scrollBack" part="back-button" aria-hidden="true"></div>
|
|
@@ -6068,6 +6068,7 @@ const ul=t=>class extends t{static get properties(){return{accessibleDescription
|
|
|
6068
6068
|
overflow: hidden;
|
|
6069
6069
|
min-width: var(--lumo-size-m);
|
|
6070
6070
|
-webkit-user-select: none;
|
|
6071
|
+
-moz-user-select: none;
|
|
6071
6072
|
user-select: none;
|
|
6072
6073
|
--_focus-ring-color: var(--vaadin-focus-ring-color, var(--lumo-primary-color-50pct));
|
|
6073
6074
|
--_focus-ring-width: var(--vaadin-focus-ring-width, 2px);
|
|
@@ -6278,18 +6279,18 @@ const ul=t=>class extends t{static get properties(){return{accessibleDescription
|
|
|
6278
6279
|
`,{moduleId:"lumo-tab"});
|
|
6279
6280
|
/**
|
|
6280
6281
|
* @license
|
|
6281
|
-
* Copyright (c) 2017 -
|
|
6282
|
+
* Copyright (c) 2017 - 2024 Vaadin Ltd.
|
|
6282
6283
|
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
|
|
6283
6284
|
*/
|
|
6284
6285
|
const ml=t=>class extends(Wa(t)){ready(){super.ready(),this.setAttribute("role","tab")}_onKeyUp(t){const e=this.hasAttribute("active");if(super._onKeyUp(t),e){const t=this.querySelector("a");t&&t.click()}}}
|
|
6285
6286
|
/**
|
|
6286
6287
|
* @license
|
|
6287
|
-
* Copyright (c) 2017 -
|
|
6288
|
+
* Copyright (c) 2017 - 2024 Vaadin Ltd.
|
|
6288
6289
|
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
|
|
6289
6290
|
*/;
|
|
6290
6291
|
/**
|
|
6291
6292
|
* @license
|
|
6292
|
-
* Copyright (c) 2017 -
|
|
6293
|
+
* Copyright (c) 2017 - 2024 Vaadin Ltd.
|
|
6293
6294
|
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
|
|
6294
6295
|
*/
|
|
6295
6296
|
jt("vaadin-tab",A`
|
|
@@ -6555,18 +6556,18 @@ jt("vaadin-tab",A`
|
|
|
6555
6556
|
`,{moduleId:"lumo-tabs"});
|
|
6556
6557
|
/**
|
|
6557
6558
|
* @license
|
|
6558
|
-
* Copyright (c) 2017 -
|
|
6559
|
+
* Copyright (c) 2017 - 2024 Vaadin Ltd.
|
|
6559
6560
|
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
|
|
6560
6561
|
*/
|
|
6561
6562
|
const fl=t=>class extends(Ra(Ja(t))){static get properties(){return{orientation:{value:"horizontal",type:String,reflectToAttribute:!0,sync:!0},selected:{value:0,type:Number}}}static get observers(){return["__tabsItemsChanged(items)"]}constructor(){super(),this.__itemsResizeObserver=new ResizeObserver((()=>{setTimeout((()=>this._updateOverflow()))}))}get _scrollOffset(){return this._vertical?this._scrollerElement.offsetHeight:this._scrollerElement.offsetWidth}get _scrollerElement(){return this.$.scroll}get __direction(){return!this._vertical&&this.__isRTL?1:-1}ready(){super.ready(),this._scrollerElement.addEventListener("scroll",(()=>this._updateOverflow())),this.setAttribute("role","tablist"),yr(this,(()=>{this._updateOverflow()}))}_onResize(){this._updateOverflow()}__tabsItemsChanged(t){this.__itemsResizeObserver.disconnect(),(t||[]).forEach((t=>{this.__itemsResizeObserver.observe(t)})),this._updateOverflow()}_scrollForward(){const t=this._getNavigationButtonVisibleWidth("forward-button"),e=this._getNavigationButtonVisibleWidth("back-button"),i=this._scrollerElement.getBoundingClientRect(),o=[...this.items].reverse().find((o=>this._isItemVisible(o,t,e,i))).getBoundingClientRect(),s=20+this.shadowRoot.querySelector('[part="back-button"]').clientWidth;let r;r=this.__isRTL?o.right-(i.right-s):o.left-(i.left+s),-this.__direction*r<1&&(r=-this.__direction*(this._scrollOffset-s)),this._scroll(r)}_scrollBack(){const t=this._getNavigationButtonVisibleWidth("forward-button"),e=this._getNavigationButtonVisibleWidth("back-button"),i=this._scrollerElement.getBoundingClientRect(),o=this.items.find((o=>this._isItemVisible(o,t,e,i))).getBoundingClientRect(),s=20+this.shadowRoot.querySelector('[part="forward-button"]').clientWidth;let r;r=this.__isRTL?o.left-(i.left+s):o.right-(i.right-s),this.__direction*r<1&&(r=this.__direction*(this._scrollOffset-s)),this._scroll(r)}_isItemVisible(t,e,i,o){if(this._vertical)throw new Error("Visibility check is only supported for horizontal tabs.");const s=o.right-(this.__isRTL?i:e),r=o.left+(this.__isRTL?e:i),n=t.getBoundingClientRect();return s>Math.floor(n.left)&&r<Math.ceil(n.right)}_getNavigationButtonVisibleWidth(t){const e=this.shadowRoot.querySelector(`[part="${t}"]`);return"0"===window.getComputedStyle(e).opacity?0:e.clientWidth}_updateOverflow(){const t=this._vertical?this._scrollerElement.scrollTop:Ya(this._scrollerElement,this.getAttribute("dir")),e=this._vertical?this._scrollerElement.scrollHeight:this._scrollerElement.scrollWidth;let i=Math.floor(t)>1?"start":"";Math.ceil(t)<Math.ceil(e-this._scrollOffset)&&(i+=" end"),1===this.__direction&&(i=i.replace(/start|end/giu,(t=>"start"===t?"end":"start"))),i?this.setAttribute("overflow",i.trim()):this.removeAttribute("overflow")}}
|
|
6562
6563
|
/**
|
|
6563
6564
|
* @license
|
|
6564
|
-
* Copyright (c) 2017 -
|
|
6565
|
+
* Copyright (c) 2017 - 2024 Vaadin Ltd.
|
|
6565
6566
|
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
|
|
6566
6567
|
*/;
|
|
6567
6568
|
/**
|
|
6568
6569
|
* @license
|
|
6569
|
-
* Copyright (c) 2017 -
|
|
6570
|
+
* Copyright (c) 2017 - 2024 Vaadin Ltd.
|
|
6570
6571
|
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
|
|
6571
6572
|
*/
|
|
6572
6573
|
jt("vaadin-tabs",A`
|