scb-wc-test 0.1.325 → 0.1.327
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/all.js +2 -0
- package/index.d.ts +1 -0
- package/index.js +1 -0
- package/mvc/components/all.js +1 -0
- package/mvc/components/scb-accordion/scb-accordion-item.js +17 -60
- package/mvc/components/scb-accordion/scb-accordion.js +6 -6
- package/mvc/components/scb-chevron/scb-chevron.js +121 -0
- package/mvc/components/scb-dropdown/scb-dropdown.js +14 -20
- package/mvc/components/scb-header/scb-header.js +1 -1
- package/mvc/components/scb-icon-button/scb-icon-button.js +1 -1
- package/mvc/components/scb-menu/scb-menu-item.js +34 -21
- package/mvc/components/scb-menu/scb-menu.js +2 -2
- package/mvc/components/scb-pagination/scb-pagination.js +3 -3
- package/mvc/components/scb-select/scb-select-option.js +6 -3
- package/mvc/components/scb-select/scb-select.js +29 -7
- package/mvc/components/scb-toc/scb-toc-item.js +10 -15
- package/mvc/components/scb-toc/scb-toc.js +2 -2
- package/mvc/components/scb-viz/scb-viz.js +1 -1
- package/package.json +6 -2
- package/scb-accordion/scb-accordion-item.d.ts +1 -0
- package/scb-accordion/scb-accordion-item.js +93 -134
- package/scb-accordion/scb-accordion.d.ts +2 -0
- package/scb-accordion/scb-accordion.js +67 -62
- package/scb-chevron/scb-chevron.d.ts +13 -0
- package/scb-chevron/scb-chevron.js +151 -0
- package/scb-dropdown/scb-dropdown.d.ts +1 -1
- package/scb-dropdown/scb-dropdown.js +132 -129
- package/scb-menu/scb-menu-item.d.ts +0 -1
- package/scb-menu/scb-menu-item.js +68 -55
- package/scb-pagination/scb-pagination.js +54 -53
- package/scb-select/scb-select-option.d.ts +1 -0
- package/scb-select/scb-select-option.js +21 -15
- package/scb-select/scb-select.d.ts +3 -0
- package/scb-select/scb-select.js +46 -12
- package/scb-toc/scb-toc-item.js +38 -42
- package/scb-wc-test.bundle.js +587 -483
- package/scb-wc-test.d.ts +2 -0
package/all.js
CHANGED
|
@@ -16,6 +16,7 @@ import './mvc/components/scb-calendar-card/scb-calendar-card.js';
|
|
|
16
16
|
import './mvc/components/scb-card/scb-card.js';
|
|
17
17
|
import './mvc/components/scb-checkbox/scb-checkbox-group.js';
|
|
18
18
|
import './mvc/components/scb-checkbox/scb-checkbox.js';
|
|
19
|
+
import './mvc/components/scb-chevron/scb-chevron.js';
|
|
19
20
|
import './mvc/components/scb-chip/scb-chip.js';
|
|
20
21
|
import './mvc/components/scb-collapse/scb-collapse.js';
|
|
21
22
|
import './mvc/components/scb-cookies-consent/scb-cookies-consent.js';
|
|
@@ -102,6 +103,7 @@ import './scb-calendar-card/scb-calendar-card.js';
|
|
|
102
103
|
import './scb-card/scb-card.js';
|
|
103
104
|
import './scb-checkbox/scb-checkbox-group.js';
|
|
104
105
|
import './scb-checkbox/scb-checkbox.js';
|
|
106
|
+
import './scb-chevron/scb-chevron.js';
|
|
105
107
|
import './scb-chip/scb-chip.js';
|
|
106
108
|
import './scb-collapse/scb-collapse.js';
|
|
107
109
|
import './scb-cookies-consent/scb-cookies-consent.js';
|
package/index.d.ts
CHANGED
|
@@ -12,6 +12,7 @@ export * from './scb-calendar-card/scb-calendar-card';
|
|
|
12
12
|
export * from './scb-card/scb-card';
|
|
13
13
|
export * from './scb-checkbox/scb-checkbox-group';
|
|
14
14
|
export * from './scb-checkbox/scb-checkbox';
|
|
15
|
+
export * from './scb-chevron/scb-chevron';
|
|
15
16
|
export * from './scb-chip/scb-chip';
|
|
16
17
|
export * from './scb-collapse/scb-collapse';
|
|
17
18
|
export * from './scb-cookies-consent/scb-cookies-consent';
|
package/index.js
CHANGED
|
@@ -12,6 +12,7 @@ import "./scb-calendar-card/scb-calendar-card.js";
|
|
|
12
12
|
import "./scb-card/scb-card.js";
|
|
13
13
|
import "./scb-checkbox/scb-checkbox-group.js";
|
|
14
14
|
import "./scb-checkbox/scb-checkbox.js";
|
|
15
|
+
import "./scb-chevron/scb-chevron.js";
|
|
15
16
|
import "./scb-chip/scb-chip.js";
|
|
16
17
|
import "./scb-collapse/scb-collapse.js";
|
|
17
18
|
import "./scb-cookies-consent/scb-cookies-consent.js";
|
package/mvc/components/all.js
CHANGED
|
@@ -12,6 +12,7 @@ import './scb-calendar/scb-calendar-event.js';
|
|
|
12
12
|
import './scb-card/scb-card.js';
|
|
13
13
|
import './scb-checkbox/scb-checkbox.js';
|
|
14
14
|
import './scb-checkbox/scb-checkbox-group.js';
|
|
15
|
+
import './scb-chevron/scb-chevron.js';
|
|
15
16
|
import './scb-chip/scb-chip.js';
|
|
16
17
|
import './scb-collapse/scb-collapse.js';
|
|
17
18
|
import './scb-cookies-consent/scb-cookies-consent.js';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import{a as g,n
|
|
1
|
+
import{a as g,n,i as m,E as p,x as l,t as v}from"../../vendor/vendor.js";import"../../vendor/vendor-material.js";import"../scb-chevron/scb-chevron.js";(function(){try{var t=typeof globalThis<"u"?globalThis:window;if(!t.__scb_ce_guard_installed__){t.__scb_ce_guard_installed__=!0;var e=customElements.define.bind(customElements);customElements.define=function(o,a,s){try{customElements.get(o)||e(o,a,s)}catch(d){var c=String(d||"");if(c.indexOf("already been used")===-1&&c.indexOf("NotSupportedError")===-1)throw d}}}}catch{}})();var b=Object.defineProperty,h=Object.getOwnPropertyDescriptor,r=(t,e,o,a)=>{for(var s=a>1?void 0:a?h(e,o):e,c=t.length-1,d;c>=0;c--)(d=t[c])&&(s=(a?d(e,o,s):d(s))||s);return a&&s&&b(e,o,s),s};let i=class extends m{constructor(){super(...arguments),this.open=!1,this.title="",this.content="",this.overline="",this.supportingText="",this.leading=!1,this.leadingVariant="",this.leadingIcon="",this.imgHrefImage="",this.avatarLabel="",this.avatarAlt="",this.avatarVariant="icon",this.avatarSrc="",this.density=0,this._unique=i._uid(),this._ignoreNextNativeTitleAttrChange=!1,this._onSummaryClick=t=>{t.preventDefault();const e=!this.open;this.closest("scb-accordion")?.onItemToggled?.(this,e),this.setOpen(e)},this._onToggle=t=>{const e=t.currentTarget;e.open||(e.open=!0),this._applyInertByOpen()}}static _uid(){return globalThis.crypto?.randomUUID?.()??`${i._uidPrefix}-${++i._uidSeq}`}static get observedAttributes(){const t=super.observedAttributes||[];return t.includes("title")?t:[...t,"title"]}attributeChangedCallback(t,e,o){if(t==="title"&&this._ignoreNextNativeTitleAttrChange){this._ignoreNextNativeTitleAttrChange=!1;return}super.attributeChangedCallback(t,e,o),t==="title"&&o!==null&&(this._ignoreNextNativeTitleAttrChange=!0,this.removeAttribute("title"))}firstUpdated(){this._applyInertByOpen()}_applyInertByOpen(){const t=this.renderRoot.querySelector(".scb-accordion-bottom");t&&(this.open?(t.removeAttribute("inert"),t.setAttribute("aria-hidden","false")):(t.setAttribute("inert",""),t.setAttribute("aria-hidden","true")))}_onKeyDown(t){const e=this.closest("scb-accordion"),a=Array.from(e?.querySelectorAll("scb-accordion-item")||[]).map(d=>d.renderRoot.querySelector("details")?.querySelector(".scb-accordion-top")||null).filter(d=>!!d),s=t.currentTarget,c=a.indexOf(s);switch(t.key){case"ArrowDown":t.preventDefault(),c<a.length-1&&a[c+1].focus();break;case"ArrowUp":t.preventDefault(),c>0&&a[c-1].focus();break;case"Home":t.preventDefault(),a.length&&a[0].focus();break;case"End":t.preventDefault(),a.length&&a[a.length-1].focus();break}}setOpen(t){this.open=!!t;const e=this.renderRoot.querySelector("details");e&&!e.open&&(e.open=!0),this._applyInertByOpen()}updated(t){if(t.has("open")){const e=this.renderRoot.querySelector("details");e&&!e.open&&(e.open=!0),this._applyInertByOpen(),this.dispatchEvent(new CustomEvent("open-changed",{detail:{open:this.open,title:this.title},bubbles:!0,composed:!0}))}}render(){const t=`bottom-${this._unique}`,e=`header-${this._unique}`,o=this.leading?this.leadingVariant==="image"&&this.imgHrefImage?l`<img part="leading-image" class="img" src="${this.imgHrefImage}" alt="" />`:this.leadingVariant==="avatar"?l`
|
|
2
2
|
<scb-avatar
|
|
3
3
|
label=${this.avatarLabel}
|
|
4
4
|
alt=${this.avatarAlt}
|
|
@@ -8,16 +8,17 @@ import{a as g,n as s,i as v,E as p,x as l,t as b}from"../../vendor/vendor.js";im
|
|
|
8
8
|
variant=${this.avatarVariant}
|
|
9
9
|
></scb-avatar>
|
|
10
10
|
`:this.leadingVariant==="icon"?l`<md-icon>${this.leadingIcon}</md-icon>`:p:p;return l`
|
|
11
|
-
<details class="scb-accordion-item"
|
|
11
|
+
<details class="scb-accordion-item" open @toggle=${this._onToggle}>
|
|
12
12
|
<summary
|
|
13
|
-
id=${
|
|
13
|
+
id=${e}
|
|
14
14
|
class="scb-accordion-top"
|
|
15
15
|
aria-controls=${t}
|
|
16
|
+
@click=${this._onSummaryClick}
|
|
16
17
|
@keydown=${this._onKeyDown}
|
|
17
18
|
>
|
|
18
19
|
<md-ripple></md-ripple>
|
|
19
20
|
|
|
20
|
-
${this.leading?l`<div class="leading">${
|
|
21
|
+
${this.leading?l`<div class="leading">${o}</div>`:p}
|
|
21
22
|
|
|
22
23
|
<div class="texts">
|
|
23
24
|
${this.overline?l`<div class="overline">${this.overline}</div>`:p}
|
|
@@ -25,25 +26,25 @@ import{a as g,n as s,i as v,E as p,x as l,t as b}from"../../vendor/vendor.js";im
|
|
|
25
26
|
${this.supportingText?l`<div class="supporting-text">${this.supportingText}</div>`:p}
|
|
26
27
|
</div>
|
|
27
28
|
|
|
28
|
-
<
|
|
29
|
+
<scb-chevron class="chevron" .open=${this.open}></scb-chevron>
|
|
29
30
|
</summary>
|
|
30
31
|
|
|
31
|
-
<div id=${t} class="scb-accordion-bottom" role="region" aria-labelledby=${
|
|
32
|
+
<div id=${t} class="scb-accordion-bottom" role="region" aria-labelledby=${e}>
|
|
32
33
|
<div class="bottom-inner">
|
|
33
34
|
<slot>${this.content}</slot>
|
|
34
35
|
</div>
|
|
35
36
|
</div>
|
|
36
37
|
</details>
|
|
37
38
|
|
|
38
|
-
<md-focus-ring for=${
|
|
39
|
-
`}};
|
|
39
|
+
<md-focus-ring for=${e} inward></md-focus-ring>
|
|
40
|
+
`}};i._uidPrefix=`uid-${Math.random().toString(36).slice(2)}`;i._uidSeq=0;i.styles=[g`
|
|
40
41
|
:host {
|
|
41
42
|
display: block;
|
|
42
43
|
position: relative;
|
|
43
44
|
--scb-accordion-hover-radius: var(--radius-none, 0px);
|
|
44
45
|
--scb-accordion-chevron-nudge-y: 3px;
|
|
45
|
-
--scb-accordion-
|
|
46
|
-
--scb-accordion-
|
|
46
|
+
--scb-accordion-motion-duration: 0.3s;
|
|
47
|
+
--scb-accordion-motion-easing: ease;
|
|
47
48
|
--scb-accordion-panel-padding-closed: var(--spacing-0, 0px);
|
|
48
49
|
|
|
49
50
|
--scb-accordion-item-padding-inline: var(--spacing-5, 16px);
|
|
@@ -98,7 +99,6 @@ import{a as g,n as s,i as v,E as p,x as l,t as b}from"../../vendor/vendor.js";im
|
|
|
98
99
|
|
|
99
100
|
.scb-accordion-item {
|
|
100
101
|
border-bottom: var(--stroke-border, 1px) solid var(--md-sys-color-outline-variant);
|
|
101
|
-
margin-bottom: calc(var(--stroke-border, 1px) * -1);
|
|
102
102
|
color: var(--md-sys-color-on-surface);
|
|
103
103
|
font-family: var(--brand-font);
|
|
104
104
|
}
|
|
@@ -132,68 +132,27 @@ import{a as g,n as s,i as v,E as p,x as l,t as b}from"../../vendor/vendor.js";im
|
|
|
132
132
|
padding-block: var(--spacing-4, 12px);
|
|
133
133
|
}
|
|
134
134
|
|
|
135
|
-
details[open] {
|
|
136
|
-
--scb-accordion-transition-easing: var(--motion-easing-emphasized-decelerate, var(--motion-easing-standard, cubic-bezier(.69,.16,.2,.98)));
|
|
137
|
-
}
|
|
138
|
-
|
|
139
135
|
.scb-accordion-bottom {
|
|
140
136
|
display: grid;
|
|
141
137
|
grid-template-rows: 0fr;
|
|
142
|
-
transition:
|
|
143
|
-
grid-template-rows var(--scb-accordion-transition-duration) var(--scb-accordion-transition-easing),
|
|
144
|
-
opacity var(--scb-accordion-transition-duration) var(--scb-accordion-transition-easing),
|
|
145
|
-
padding var(--scb-accordion-transition-duration) var(--scb-accordion-transition-easing);
|
|
146
138
|
opacity: 0;
|
|
147
139
|
overflow: hidden;
|
|
140
|
+
transition:
|
|
141
|
+
grid-template-rows var(--scb-accordion-motion-duration) var(--scb-accordion-motion-easing),
|
|
142
|
+
opacity var(--scb-accordion-motion-duration) var(--scb-accordion-motion-easing),
|
|
143
|
+
padding var(--scb-accordion-motion-duration) var(--scb-accordion-motion-easing);
|
|
148
144
|
padding-block: var(--scb-accordion-panel-padding-closed);
|
|
149
145
|
padding-inline: var(--scb-accordion-item-padding-inline, var(--spacing-5, 16px));
|
|
150
146
|
}
|
|
151
|
-
|
|
147
|
+
:host([open]) .scb-accordion-bottom {
|
|
152
148
|
grid-template-rows: 1fr;
|
|
153
149
|
opacity: 1;
|
|
154
|
-
overflow: visible;
|
|
155
150
|
padding-top: var(--spacing-2, 4px);
|
|
156
151
|
padding-right: var(--scb-accordion-item-padding-inline, var(--spacing-5, 16px));
|
|
157
152
|
padding-bottom: var(--scb-accordion-item-padding-inline, var(--spacing-5, 16px));
|
|
158
153
|
padding-left: var(--scb-accordion-item-padding-inline, var(--spacing-5, 16px));
|
|
159
154
|
}
|
|
160
155
|
.bottom-inner { overflow: hidden; }
|
|
161
|
-
details[open] .bottom-inner { overflow: visible; }
|
|
162
|
-
|
|
163
|
-
/* Browsers med stöd för ::details-content och interpolate-size kan animera höjd till auto. */
|
|
164
|
-
@supports selector(::details-content) and (interpolate-size: allow-keywords) {
|
|
165
|
-
:host {
|
|
166
|
-
interpolate-size: allow-keywords;
|
|
167
|
-
}
|
|
168
|
-
|
|
169
|
-
details {
|
|
170
|
-
interpolate-size: allow-keywords;
|
|
171
|
-
}
|
|
172
|
-
|
|
173
|
-
details::details-content {
|
|
174
|
-
height: 0;
|
|
175
|
-
overflow: clip;
|
|
176
|
-
content-visibility: hidden;
|
|
177
|
-
transition:
|
|
178
|
-
height var(--scb-accordion-transition-duration) var(--scb-accordion-transition-easing),
|
|
179
|
-
content-visibility var(--scb-accordion-transition-duration) var(--scb-accordion-transition-easing)
|
|
180
|
-
allow-discrete;
|
|
181
|
-
}
|
|
182
|
-
|
|
183
|
-
details[open]::details-content {
|
|
184
|
-
height: auto;
|
|
185
|
-
overflow: visible;
|
|
186
|
-
content-visibility: visible;
|
|
187
|
-
}
|
|
188
|
-
|
|
189
|
-
.scb-accordion-bottom {
|
|
190
|
-
display: block;
|
|
191
|
-
grid-template-rows: unset;
|
|
192
|
-
transition:
|
|
193
|
-
opacity var(--scb-accordion-transition-duration) var(--scb-accordion-transition-easing),
|
|
194
|
-
padding var(--scb-accordion-transition-duration) var(--scb-accordion-transition-easing);
|
|
195
|
-
}
|
|
196
|
-
}
|
|
197
156
|
|
|
198
157
|
.title {
|
|
199
158
|
font-family: var(--brand-font);
|
|
@@ -232,9 +191,7 @@ import{a as g,n as s,i as v,E as p,x as l,t as b}from"../../vendor/vendor.js";im
|
|
|
232
191
|
|
|
233
192
|
.chevron {
|
|
234
193
|
margin-left: auto;
|
|
235
|
-
transition: transform var(--motion-duration-short, var(--scb-accordion-transition-duration)) var(--motion-easing-standard, var(--scb-accordion-transition-easing));
|
|
236
194
|
}
|
|
237
|
-
details[open] .chevron { transform: rotate(180deg); }
|
|
238
195
|
|
|
239
196
|
md-ripple {
|
|
240
197
|
border-radius: inherit;
|
|
@@ -246,4 +203,4 @@ import{a as g,n as s,i as v,E as p,x as l,t as b}from"../../vendor/vendor.js";im
|
|
|
246
203
|
@media (prefers-reduced-motion: reduce) {
|
|
247
204
|
md-ripple { display: none; }
|
|
248
205
|
}
|
|
249
|
-
`];
|
|
206
|
+
`];r([n({type:Boolean,reflect:!0})],i.prototype,"open",2);r([n({type:String})],i.prototype,"title",2);r([n({type:String})],i.prototype,"content",2);r([n({type:String,attribute:"overline"})],i.prototype,"overline",2);r([n({type:String,attribute:"supporting-text"})],i.prototype,"supportingText",2);r([n({type:Boolean})],i.prototype,"leading",2);r([n({type:String,attribute:"leading-variant",reflect:!0})],i.prototype,"leadingVariant",2);r([n({type:String,attribute:"leading-icon"})],i.prototype,"leadingIcon",2);r([n({type:String,attribute:"img-href-image",reflect:!0})],i.prototype,"imgHrefImage",2);r([n({type:String,attribute:"avatar-label"})],i.prototype,"avatarLabel",2);r([n({type:String,attribute:"avatar-alt"})],i.prototype,"avatarAlt",2);r([n({type:String,attribute:"avatar-variant"})],i.prototype,"avatarVariant",2);r([n({type:String,attribute:"avatar-src"})],i.prototype,"avatarSrc",2);r([n({type:Number,reflect:!0})],i.prototype,"density",2);i=r([v("scb-accordion-item")],i);
|
|
@@ -1,18 +1,18 @@
|
|
|
1
|
-
import{a as _,n as l,i as
|
|
1
|
+
import{a as _,n as l,i as O,E as k,x as b,t as S}from"../../vendor/vendor.js";import"./scb-accordion-item.js";import"../scb-button/scb-button.js";import"../../vendor/vendor-material.js";import"../scb-chevron/scb-chevron.js";(function(){try{var t=typeof globalThis<"u"?globalThis:window;if(!t.__scb_ce_guard_installed__){t.__scb_ce_guard_installed__=!0;var e=customElements.define.bind(customElements);customElements.define=function(i,s,n){try{customElements.get(i)||e(i,s,n)}catch(d){var p=String(d||"");if(p.indexOf("already been used")===-1&&p.indexOf("NotSupportedError")===-1)throw d}}}}catch{}})();var C=Object.defineProperty,w=Object.getOwnPropertyDescriptor,u=t=>{throw TypeError(t)},r=(t,e,i,s)=>{for(var n=s>1?void 0:s?w(e,i):e,p=t.length-1,d;p>=0;p--)(d=t[p])&&(n=(s?d(e,i,n):d(n))||n);return s&&n&&C(e,i,n),n},A=(t,e,i)=>e.has(t)||u("Cannot "+i),T=(t,e,i)=>e.has(t)?u("Cannot add the same private member more than once"):e instanceof WeakSet?e.add(t):e.set(t,i),a=(t,e,i)=>(A(t,e,"access private method"),i),o,m,v,h,y,g,f;let c=class extends O{constructor(){super(...arguments),T(this,o),this.singleOpen=!1,this.showCloseAll=!1,this.size="large",this.spacing=void 0,this.spacingTop=void 0,this.spacingBottom=void 0,this.spacingLeft=void 0,this.spacingRight=void 0}connectedCallback(){super.connectedCallback(),this.addEventListener("open-changed",a(this,o,h))}disconnectedCallback(){this.removeEventListener("open-changed",a(this,o,h)),super.disconnectedCallback()}render(){const t=!this.singleOpen&&this.showCloseAll,e=t?a(this,o,m).call(this):!1;return b`
|
|
2
2
|
<div class="scb-accordion" ?single-open=${this.singleOpen}>
|
|
3
3
|
${t?b`
|
|
4
4
|
<div class="scb-accordion-actions" role="toolbar" aria-label="Accordionkontroller">
|
|
5
5
|
<scb-button
|
|
6
6
|
variant="text"
|
|
7
7
|
label=${e?"Stäng alla":"Öppna alla"}
|
|
8
|
-
@click=${
|
|
8
|
+
@click=${a(this,o,v)}
|
|
9
9
|
></scb-button>
|
|
10
10
|
</div>
|
|
11
|
-
`:
|
|
11
|
+
`:k}
|
|
12
12
|
|
|
13
|
-
<slot @slotchange=${
|
|
13
|
+
<slot @slotchange=${a(this,o,y)}></slot>
|
|
14
14
|
</div>
|
|
15
|
-
`}firstUpdated(){
|
|
15
|
+
`}firstUpdated(){a(this,o,f).call(this),a(this,o,g).call(this)}updated(t){(t.has("spacing")||t.has("spacingTop")||t.has("spacingBottom")||t.has("spacingLeft")||t.has("spacingRight"))&&a(this,o,f).call(this),t.has("singleOpen")&&a(this,o,g).call(this)}_getDirectItems(){return Array.from(this.children).filter(t=>t.tagName==="SCB-ACCORDION-ITEM")}onItemToggled(t,e){if(this.singleOpen&&e){this._getDirectItems().forEach(s=>{s!==t&&s.setOpen(!1)});return}!this.singleOpen&&this.showCloseAll&&this.requestUpdate()}mapSpacingToken(t){if(!t)return;const e=String(t).trim();if(e)return/^\d+$/.test(e)?`var(--spacing-${Math.max(0,Math.min(14,parseInt(e,10)))})`:e}};o=new WeakSet;m=function(){const t=this._getDirectItems();return t.length>0&&t.every(e=>e.open)};v=function(){if(this.singleOpen||!this.showCloseAll)return;const t=this._getDirectItems(),e=t.length>0&&t.every(i=>i.open);t.forEach(i=>i.setOpen(!e))};h=function(){this.singleOpen||this.showCloseAll&&this.requestUpdate()};y=function(){if(this.singleOpen){a(this,o,g).call(this);return}this.showCloseAll&&this.requestUpdate()};g=function(){if(!this.singleOpen)return;const e=this._getDirectItems().filter(i=>i.open);e.length<=1||e.slice(1).forEach(i=>i.setOpen(!1))};f=function(){const t=this.mapSpacingToken(this.spacing),e=this.mapSpacingToken(this.spacingTop)??t,i=this.mapSpacingToken(this.spacingBottom)??t,s=this.mapSpacingToken(this.spacingLeft),n=this.mapSpacingToken(this.spacingRight);e?this.style.setProperty("--scb-accordion-spacing-block-start",e):this.style.removeProperty("--scb-accordion-spacing-block-start"),i?this.style.setProperty("--scb-accordion-spacing-block-end",i):this.style.removeProperty("--scb-accordion-spacing-block-end"),s?this.style.setProperty("--scb-accordion-spacing-inline-start",s):this.style.removeProperty("--scb-accordion-spacing-inline-start"),n?this.style.setProperty("--scb-accordion-spacing-inline-end",n):this.style.removeProperty("--scb-accordion-spacing-inline-end")};c.styles=_`
|
|
16
16
|
:host {
|
|
17
17
|
display: block;
|
|
18
18
|
margin-block-start: var(--scb-accordion-spacing-block-start, 0);
|
|
@@ -41,4 +41,4 @@ import{a as _,n as l,i as k,E as O,x as b,t as S}from"../../vendor/vendor.js";im
|
|
|
41
41
|
padding-block-start: var(--scb-accordion-actions-padding-block);
|
|
42
42
|
padding-block-end: var(--scb-accordion-actions-padding-block);
|
|
43
43
|
}
|
|
44
|
-
`;r([l({type:Boolean,attribute:"single-open",reflect:!0})],
|
|
44
|
+
`;r([l({type:Boolean,attribute:"single-open",reflect:!0})],c.prototype,"singleOpen",2);r([l({type:Boolean,attribute:"show-close-all",reflect:!0})],c.prototype,"showCloseAll",2);r([l({type:String,reflect:!0})],c.prototype,"size",2);r([l({type:String,reflect:!0})],c.prototype,"spacing",2);r([l({type:String,attribute:"spacing-top",reflect:!0})],c.prototype,"spacingTop",2);r([l({type:String,attribute:"spacing-bottom",reflect:!0})],c.prototype,"spacingBottom",2);r([l({type:String,attribute:"spacing-left",reflect:!0})],c.prototype,"spacingLeft",2);r([l({type:String,attribute:"spacing-right",reflect:!0})],c.prototype,"spacingRight",2);c=r([S("scb-accordion")],c);
|
|
@@ -0,0 +1,121 @@
|
|
|
1
|
+
import{a as f,n as l,r as h,i as v,x as p,t as m}from"../../vendor/vendor.js";(function(){try{var r=typeof globalThis<"u"?globalThis:window;if(!r.__scb_ce_guard_installed__){r.__scb_ce_guard_installed__=!0;var t=customElements.define.bind(customElements);customElements.define=function(o,n,e){try{customElements.get(o)||t(o,n,e)}catch(s){var a=String(s||"");if(a.indexOf("already been used")===-1&&a.indexOf("NotSupportedError")===-1)throw s}}}}catch{}})();var d=Object.defineProperty,g=Object.getOwnPropertyDescriptor,c=(r,t,o,n)=>{for(var e=n>1?void 0:n?g(t,o):t,a=r.length-1,s;a>=0;a--)(s=r[a])&&(e=(n?s(t,o,e):s(e))||e);return n&&e&&d(t,o,e),e};let i=class extends v{constructor(){super(...arguments),this.open=!1,this.animationPhase="idle"}willUpdate(r){r.has("open")&&(r.get("open")??!this.open)!==this.open&&(this.animationPhase=this.open?"opening":"closing")}render(){return p`
|
|
2
|
+
<svg
|
|
3
|
+
class="chevron-icon ${this.animationPhase==="idle"?"":`chevron--${this.animationPhase}`}"
|
|
4
|
+
viewBox="0 0 24 24"
|
|
5
|
+
aria-hidden="true"
|
|
6
|
+
focusable="false"
|
|
7
|
+
>
|
|
8
|
+
<line class="bar bar--left" x1="5" y1="12" x2="12" y2="12"></line>
|
|
9
|
+
<line class="bar bar--right" x1="12" y1="12" x2="19" y2="12"></line>
|
|
10
|
+
</svg>
|
|
11
|
+
`}};i.styles=f`
|
|
12
|
+
:host {
|
|
13
|
+
display: block;
|
|
14
|
+
width: var(--scb-chevron-size, 24px);
|
|
15
|
+
height: var(--scb-chevron-size, 24px);
|
|
16
|
+
color: inherit;
|
|
17
|
+
--chevron-offset-down: 2.3px;
|
|
18
|
+
--chevron-offset-up: -2.3px;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.chevron-icon {
|
|
22
|
+
display: block;
|
|
23
|
+
width: var(--scb-chevron-size, 24px);
|
|
24
|
+
height: var(--scb-chevron-size, 24px);
|
|
25
|
+
overflow: visible;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
.chevron-icon .bar {
|
|
29
|
+
fill: none;
|
|
30
|
+
stroke: currentColor;
|
|
31
|
+
stroke-width: 1.5;
|
|
32
|
+
stroke-linecap: square;
|
|
33
|
+
stroke-linejoin: miter;
|
|
34
|
+
stroke-miterlimit: 2;
|
|
35
|
+
shape-rendering: geometricPrecision;
|
|
36
|
+
vector-effect: non-scaling-stroke;
|
|
37
|
+
transform-box: view-box;
|
|
38
|
+
transform-origin: 12px 12px;
|
|
39
|
+
will-change: transform;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
.chevron-icon .bar--left {
|
|
43
|
+
transform: translateY(var(--chevron-offset-down)) rotate(45deg);
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
.chevron-icon .bar--right {
|
|
47
|
+
transform: translateY(var(--chevron-offset-down)) rotate(-45deg);
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
:host([open]) .chevron-icon .bar--left {
|
|
51
|
+
transform: translateY(var(--chevron-offset-up)) rotate(-45deg);
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
:host([open]) .chevron-icon .bar--right {
|
|
55
|
+
transform: translateY(var(--chevron-offset-up)) rotate(45deg);
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
.chevron-icon.chevron--opening .bar--left {
|
|
59
|
+
animation: chevron-left-open 100ms linear;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
.chevron-icon.chevron--opening .bar--right {
|
|
63
|
+
animation: chevron-right-open 100ms linear;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
.chevron-icon.chevron--closing .bar--left {
|
|
67
|
+
animation: chevron-left-close 100ms linear;
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
.chevron-icon.chevron--closing .bar--right {
|
|
71
|
+
animation: chevron-right-close 100ms linear;
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
@keyframes chevron-left-open {
|
|
75
|
+
0% {
|
|
76
|
+
transform: translateY(var(--chevron-offset-down)) rotate(45deg);
|
|
77
|
+
}
|
|
78
|
+
50% {
|
|
79
|
+
transform: translateY(0px) rotate(0deg);
|
|
80
|
+
}
|
|
81
|
+
100% {
|
|
82
|
+
transform: translateY(var(--chevron-offset-up)) rotate(-45deg);
|
|
83
|
+
}
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
@keyframes chevron-right-open {
|
|
87
|
+
0% {
|
|
88
|
+
transform: translateY(var(--chevron-offset-down)) rotate(-45deg);
|
|
89
|
+
}
|
|
90
|
+
50% {
|
|
91
|
+
transform: translateY(0px) rotate(0deg);
|
|
92
|
+
}
|
|
93
|
+
100% {
|
|
94
|
+
transform: translateY(var(--chevron-offset-up)) rotate(45deg);
|
|
95
|
+
}
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
@keyframes chevron-left-close {
|
|
99
|
+
0% {
|
|
100
|
+
transform: translateY(var(--chevron-offset-up)) rotate(-45deg);
|
|
101
|
+
}
|
|
102
|
+
50% {
|
|
103
|
+
transform: translateY(0px) rotate(0deg);
|
|
104
|
+
}
|
|
105
|
+
100% {
|
|
106
|
+
transform: translateY(var(--chevron-offset-down)) rotate(45deg);
|
|
107
|
+
}
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
@keyframes chevron-right-close {
|
|
111
|
+
0% {
|
|
112
|
+
transform: translateY(var(--chevron-offset-up)) rotate(45deg);
|
|
113
|
+
}
|
|
114
|
+
50% {
|
|
115
|
+
transform: translateY(0px) rotate(0deg);
|
|
116
|
+
}
|
|
117
|
+
100% {
|
|
118
|
+
transform: translateY(var(--chevron-offset-down)) rotate(-45deg);
|
|
119
|
+
}
|
|
120
|
+
}
|
|
121
|
+
`;c([l({type:Boolean,reflect:!0})],i.prototype,"open",2);c([h()],i.prototype,"animationPhase",2);i=c([m("scb-chevron")],i);
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import{a as f,n as
|
|
1
|
+
import{a as f,n as c,e as u,i as y,E as g,x as b,t as v}from"../../vendor/vendor.js";import"../../vendor/vendor-material.js";import"../scb-button/scb-button.js";import"../scb-chevron/scb-chevron.js";import"../scb-options-menu/scb-options-menu.js";import"../scb-options-menu/scb-options-menu-item.js";import"../scb-divider/scb-divider.js";import"../scb-options-menu/scb-options-sub-menu.js";(function(){try{var t=typeof globalThis<"u"?globalThis:window;if(!t.__scb_ce_guard_installed__){t.__scb_ce_guard_installed__=!0;var e=customElements.define.bind(customElements);customElements.define=function(n,o,i){try{customElements.get(n)||e(n,o,i)}catch(r){var s=String(r||"");if(s.indexOf("already been used")===-1&&s.indexOf("NotSupportedError")===-1)throw r}}}}catch{}})();var w=Object.defineProperty,_=Object.getOwnPropertyDescriptor,p=(t,e,n,o)=>{for(var i=o>1?void 0:o?_(e,n):e,s=t.length-1,r;s>=0;s--)(r=t[s])&&(i=(o?r(e,n,i):r(i))||i);return o&&i&&w(e,n,i),i};const S=()=>{if(typeof window>"u"||typeof document>"u"||!("customElements"in window)||document.head.querySelector("style[data-scb-dropdown-pre-upgrade]"))return;const t=document.createElement("style");t.setAttribute("data-scb-dropdown-pre-upgrade",""),t.textContent=`
|
|
2
2
|
scb-dropdown:not(:defined) {
|
|
3
3
|
display: inline-block;
|
|
4
4
|
position: relative;
|
|
@@ -22,7 +22,7 @@ import{a as f,n as p,e as u,i as y,E as g,x as m,t as v}from"../../vendor/vendor
|
|
|
22
22
|
scb-dropdown:not(:defined) > * {
|
|
23
23
|
display: none;
|
|
24
24
|
}
|
|
25
|
-
`,document.head.appendChild(t);const e=i=>{const o=String(i??"").trim();if(o)return/^\d+$/.test(o)?`var(--spacing-${Math.max(0,Math.min(14,parseInt(o,10)))})`:o},n=i=>{const o=e(i.getAttribute("spacing")),l=e(i.getAttribute("spacing-top"))??o,c=e(i.getAttribute("spacing-bottom"))??o,h=e(i.getAttribute("spacing-left")),b=e(i.getAttribute("spacing-right"));l?i.style.setProperty("--scb-dropdown-spacing-block-start",l):i.style.removeProperty("--scb-dropdown-spacing-block-start"),c?i.style.setProperty("--scb-dropdown-spacing-block-end",c):i.style.removeProperty("--scb-dropdown-spacing-block-end"),h?i.style.setProperty("--scb-dropdown-spacing-inline-start",h):i.style.removeProperty("--scb-dropdown-spacing-inline-start"),b?i.style.setProperty("--scb-dropdown-spacing-inline-end",b):i.style.removeProperty("--scb-dropdown-spacing-inline-end")};(()=>{document.querySelectorAll("scb-dropdown").forEach(n)})();const s=new MutationObserver(i=>{for(const o of i){if(o.type==="attributes"){const l=o.target;l instanceof HTMLElement&&l.tagName.toLowerCase()==="scb-dropdown"&&n(l);continue}if(o.type==="childList"){const l=[...Array.from(o.addedNodes),...Array.from(o.removedNodes)];for(const c of l)if(c instanceof HTMLElement){if(c.tagName.toLowerCase()==="scb-dropdown"){n(c);continue}c.querySelectorAll?.("scb-dropdown").forEach(h=>{h instanceof HTMLElement&&n(h)})}}}});s.observe(document.documentElement,{subtree:!0,childList:!0,attributes:!0,attributeFilter:["spacing","spacing-top","spacing-bottom","spacing-left","spacing-right"]}),customElements.whenDefined("scb-dropdown").then(()=>{s.disconnect()})};S();let a=class extends y{constructor(){super(...arguments),this.label="Dropdown",this.variant="filled",this.size="medium",this.open=!1,this.disabled=!1,this.spacing=void 0,this.spacingTop=void 0,this.spacingBottom=void 0,this.spacingLeft=void 0,this.spacingRight=void 0,this.menuGap="3",this.width=null,this.minWidth=null,this.maxWidth=null,this.dataIndex=null,this.ariaCurrent=null,this._slottedMenuEl=null,this._openSettledTimer=null,this._menuCloseTimer=null,this._panelResizeObserver=null,this._panelHeightSyncRaf=null,this._onDocumentClickBound=t=>{if(!this.open)return;const e=t.composedPath(),n=e.find(r=>r instanceof HTMLElement&&r.tagName.toLowerCase()==="scb-dropdown");if(n&&n!==this){this.open=!1;return}e.includes(this)||(this.open=!1)},this._onDocumentKeydownBound=t=>{this.open&&t.key==="Escape"&&(this.open=!1)},this._onSlottedMenuOpen=()=>{this.open||(this.open=!0)},this._onSlottedMenuClose=()=>{this.open&&(this.open=!1)},this._onSlotChange=()=>{this._syncSlottedMenu(),this._applyPanelSizing(),this._applyInertByOpen(),this.requestUpdate()},this._onTriggerClick=t=>{this.hasAttribute("as-tab")||t.stopPropagation(),!this.disabled&&(this.open=!this.open)}}connectedCallback(){super.connectedCallback(),document.addEventListener("click",this._onDocumentClickBound,!0),document.addEventListener("keydown",this._onDocumentKeydownBound)}disconnectedCallback(){document.removeEventListener("click",this._onDocumentClickBound,!0),document.removeEventListener("keydown",this._onDocumentKeydownBound),this._detachSlottedMenuListeners(),this._panelResizeObserver&&(this._panelResizeObserver.disconnect(),this._panelResizeObserver=null),this._panelHeightSyncRaf!==null&&(window.cancelAnimationFrame(this._panelHeightSyncRaf),this._panelHeightSyncRaf=null),this._openSettledTimer!==null&&(window.clearTimeout(this._openSettledTimer),this._openSettledTimer=null),this._menuCloseTimer!==null&&(window.clearTimeout(this._menuCloseTimer),this._menuCloseTimer=null),super.disconnectedCallback()}firstUpdated(t){super.firstUpdated(t),this._syncSlottedMenu(),this._applyPanelVars(),this._applyPanelSizing(),this._applyChevronState(),this._applyInertByOpen(),this._setupPanelResizeObserver(),this._syncPanelMaxHeightByOpen(),this._syncOverflowVisibilityByOpen()}updated(t){super.updated(t),t.has("menuGap")&&this._applyPanelVars(),(t.has("width")||t.has("minWidth")||t.has("maxWidth"))&&this._applyPanelSizing(),(t.has("spacing")||t.has("spacingTop")||t.has("spacingBottom")||t.has("spacingLeft")||t.has("spacingRight"))&&this._applySpacing(),t.has("open")&&(this.open||this._closeAllSubMenus(),this._syncSlottedMenuOpen(),this._applyChevronState(),this._applyInertByOpen(),this._syncPanelMaxHeightByOpen(),this._syncOverflowVisibilityByOpen(),this.dispatchEvent(new CustomEvent("openchange",{bubbles:!0,composed:!0,detail:{open:this.open}})))}_applyPanelVars(){if(this.menuGap==null||String(this.menuGap).trim()===""){this.style.removeProperty("--scb-dropdown-panel-gap");return}this.style.setProperty("--scb-dropdown-panel-gap",this._mapSpacingToken(this.menuGap))}_applyPanelSizing(){const t=this.renderRoot.querySelector(".panel-surface");t&&(this.width&&String(this.width).trim()!==""?t.style.inlineSize=this.width:t.style.removeProperty("inline-size"),this.minWidth&&String(this.minWidth).trim()!==""?t.style.minInlineSize=this.minWidth:t.style.removeProperty("min-inline-size"),this.maxWidth&&String(this.maxWidth).trim()!==""?t.style.maxInlineSize=this.maxWidth:t.style.removeProperty("max-inline-size")),this._slottedMenuEl&&(this.width&&String(this.width).trim()!==""?this._slottedMenuEl.style.inlineSize=this.width:this._slottedMenuEl.style.removeProperty("inline-size"),this.minWidth&&String(this.minWidth).trim()!==""?this._slottedMenuEl.style.minInlineSize=this.minWidth:this._slottedMenuEl.style.removeProperty("min-inline-size"),this.maxWidth&&String(this.maxWidth).trim()!==""?this._slottedMenuEl.style.maxInlineSize=this.maxWidth:this._slottedMenuEl.style.removeProperty("max-inline-size")),this._schedulePanelHeightSync()}_setupPanelResizeObserver(){if(this._panelResizeObserver||typeof ResizeObserver>"u")return;const t=this._panelInnerEl;t&&(this._panelResizeObserver=new ResizeObserver(()=>{this._schedulePanelHeightSync()}),this._panelResizeObserver.observe(t))}_schedulePanelHeightSync(){this._panelHeightSyncRaf===null&&(this._panelHeightSyncRaf=window.requestAnimationFrame(()=>{this._panelHeightSyncRaf=null,this._syncPanelMaxHeightByOpen()}))}_syncPanelMaxHeightByOpen(){const t=this._panelSurfaceEl;if(!t)return;if(this._slottedMenuEl){t.style.removeProperty("--scb-dropdown-panel-current-max-height");return}if(!this.open){t.style.setProperty("--scb-dropdown-panel-current-max-height","0px");return}const e=this._panelInnerEl;if(!e)return;const n=`${Math.ceil(e.scrollHeight)}px`;t.style.getPropertyValue("--scb-dropdown-panel-current-max-height").trim()!==n&&t.style.setProperty("--scb-dropdown-panel-current-max-height",n)}_mapSpacingToken(t){const e=String(t).trim();return/^\d+$/.test(e)?`var(--spacing-${Math.max(0,Math.min(14,parseInt(e,10)))})`:e}_mapHostSpacingToken(t){if(!t)return;const e=String(t).trim();if(e)return/^\d+$/.test(e)?`var(--spacing-${Math.max(0,Math.min(14,parseInt(e,10)))})`:e}_applySpacing(){const t=this._mapHostSpacingToken(this.spacing),e=this._mapHostSpacingToken(this.spacingTop)??t,n=this._mapHostSpacingToken(this.spacingBottom)??t,r=this._mapHostSpacingToken(this.spacingLeft),s=this._mapHostSpacingToken(this.spacingRight);e?this.style.setProperty("--scb-dropdown-spacing-block-start",e):this.style.removeProperty("--scb-dropdown-spacing-block-start"),n?this.style.setProperty("--scb-dropdown-spacing-block-end",n):this.style.removeProperty("--scb-dropdown-spacing-block-end"),r?this.style.setProperty("--scb-dropdown-spacing-inline-start",r):this.style.removeProperty("--scb-dropdown-spacing-inline-start"),s?this.style.setProperty("--scb-dropdown-spacing-inline-end",s):this.style.removeProperty("--scb-dropdown-spacing-inline-end")}_syncSlottedMenu(){const e=(this._slotEl?.assignedElements({flatten:!0})??[]).find(n=>n.tagName.toLowerCase()==="scb-options-menu");if(e===this._slottedMenuEl){this._syncSlottedMenuOpen();return}this._detachSlottedMenuListeners(),this._slottedMenuEl=e??null,this._slottedMenuEl&&(this._slottedMenuEl.addEventListener("open",this._onSlottedMenuOpen),this._slottedMenuEl.addEventListener("close",this._onSlottedMenuClose),this._syncSlottedMenuOpen())}_detachSlottedMenuListeners(){this._slottedMenuEl&&(this._slottedMenuEl.removeEventListener("open",this._onSlottedMenuOpen),this._slottedMenuEl.removeEventListener("close",this._onSlottedMenuClose))}_syncSlottedMenuOpen(){if(!this._slottedMenuEl)return;if(this._menuCloseTimer!==null&&(window.clearTimeout(this._menuCloseTimer),this._menuCloseTimer=null),this.open){this._slottedMenuEl.open=!0;return}const t=this._getPanelTransitionMs();if(t<=0){this._slottedMenuEl.open=!1;return}this._menuCloseTimer=window.setTimeout(()=>{this._menuCloseTimer=null,!this.open&&this._slottedMenuEl&&(this._slottedMenuEl.open=!1)},t)}_syncOverflowVisibilityByOpen(){if(this._openSettledTimer!==null&&(window.clearTimeout(this._openSettledTimer),this._openSettledTimer=null),this.removeAttribute("data-open-settled"),!this.open)return;const t=this.renderRoot.querySelector(".panel-surface");if(!t){this.setAttribute("data-open-settled","");return}const e=this._getTransitionMs(t);if(e<=0){this.setAttribute("data-open-settled","");return}this._openSettledTimer=window.setTimeout(()=>{this._openSettledTimer=null,this.open&&this.setAttribute("data-open-settled","")},e)}_getPanelTransitionMs(){const t=this.renderRoot.querySelector(".panel-surface");return t?this._getTransitionMs(t):0}_getTransitionMs(t){const e=getComputedStyle(t),n=e.transitionDuration.split(",").map(l=>l.trim()),r=e.transitionDelay.split(",").map(l=>l.trim()),s=l=>{const c=parseFloat(l);return Number.isFinite(c)?l.endsWith("ms")?c:l.endsWith("s")?c*1e3:c:0},i=Math.max(n.length,r.length);let o=0;for(let l=0;l<i;l+=1){const c=s(n[l]??n[n.length-1]??"0s"),h=s(r[l]??r[r.length-1]??"0s");o=Math.max(o,c+h)}return Math.ceil(o)}_applyInertByOpen(){const t=this.renderRoot.querySelector(".panel");t&&(this.open?(t.removeAttribute("inert"),t.setAttribute("aria-hidden","false"),this._restoreTabIndexesIfNeeded()):(t.setAttribute("inert",""),t.setAttribute("aria-hidden","true"),this._removeTabIndexesIfNeeded()))}_supportsInert(){return"inert"in HTMLElement.prototype}_collectFocusableFromSlot(){const t=this._slotEl;if(!t)return[];const e=t.assignedElements({flatten:!0}),n=[],r=s=>{s instanceof HTMLElement&&s.matches("a,button,input,select,textarea,[tabindex]")&&n.push(s)};return e.forEach(s=>{r(s),s.querySelectorAll?.("a,button,input,select,textarea,[tabindex]").forEach(i=>r(i))}),n}_removeTabIndexesIfNeeded(){if(this._supportsInert())return;this._collectFocusableFromSlot().forEach(e=>{const n=e.getAttribute("tabindex");n!==null&&e.setAttribute("data-scb-prev-tabindex",n),e.setAttribute("tabindex","-1")})}_restoreTabIndexesIfNeeded(){if(this._supportsInert())return;this._collectFocusableFromSlot().forEach(e=>{const n=e.getAttribute("data-scb-prev-tabindex");n!==null?(e.setAttribute("tabindex",n),e.removeAttribute("data-scb-prev-tabindex")):e.removeAttribute("tabindex")})}_closeAllSubMenus(){const t=this.querySelectorAll("scb-options-sub-menu");for(const e of t)e.removeAttribute("open")}focus(t){const e=this._triggerEl;if(e?.focus){e.focus(t);return}super.focus(t)}_applyChevronState(){if(this.hasAttribute("as-tab"))return;const t=this._getChevronIconEl();t&&(t.style.transition="transform var(--motion-duration-short, 150ms) var(--motion-easing-standard, ease)",t.style.transformOrigin="center",t.style.transform=this.open?"rotate(180deg)":"rotate(0deg)")}_getChevronIconEl(){const t=this._triggerEl;if(t?.tagName?.toLowerCase?.()!=="scb-button")return null;const e=t?.shadowRoot;return e?e.querySelector('md-icon[slot="icon"]')??e.querySelector("md-icon"):null}render(){const t=!!this._slottedMenuEl,e=this.hasAttribute("as-tab"),n=this.dataIndex,s=this.ariaCurrent==="page"?"page":g,i=e?m`
|
|
25
|
+
`,document.head.appendChild(t);const e=s=>{const r=String(s??"").trim();if(r)return/^\d+$/.test(r)?`var(--spacing-${Math.max(0,Math.min(14,parseInt(r,10)))})`:r},n=s=>{const r=e(s.getAttribute("spacing")),l=e(s.getAttribute("spacing-top"))??r,d=e(s.getAttribute("spacing-bottom"))??r,h=e(s.getAttribute("spacing-left")),m=e(s.getAttribute("spacing-right"));l?s.style.setProperty("--scb-dropdown-spacing-block-start",l):s.style.removeProperty("--scb-dropdown-spacing-block-start"),d?s.style.setProperty("--scb-dropdown-spacing-block-end",d):s.style.removeProperty("--scb-dropdown-spacing-block-end"),h?s.style.setProperty("--scb-dropdown-spacing-inline-start",h):s.style.removeProperty("--scb-dropdown-spacing-inline-start"),m?s.style.setProperty("--scb-dropdown-spacing-inline-end",m):s.style.removeProperty("--scb-dropdown-spacing-inline-end")};(()=>{document.querySelectorAll("scb-dropdown").forEach(n)})();const i=new MutationObserver(s=>{for(const r of s){if(r.type==="attributes"){const l=r.target;l instanceof HTMLElement&&l.tagName.toLowerCase()==="scb-dropdown"&&n(l);continue}if(r.type==="childList"){const l=[...Array.from(r.addedNodes),...Array.from(r.removedNodes)];for(const d of l)if(d instanceof HTMLElement){if(d.tagName.toLowerCase()==="scb-dropdown"){n(d);continue}d.querySelectorAll?.("scb-dropdown").forEach(h=>{h instanceof HTMLElement&&n(h)})}}}});i.observe(document.documentElement,{subtree:!0,childList:!0,attributes:!0,attributeFilter:["spacing","spacing-top","spacing-bottom","spacing-left","spacing-right"]}),customElements.whenDefined("scb-dropdown").then(()=>{i.disconnect()})};S();let a=class extends y{constructor(){super(...arguments),this.label="Dropdown",this.variant="filled",this.size="medium",this.open=!1,this.disabled=!1,this.spacing=void 0,this.spacingTop=void 0,this.spacingBottom=void 0,this.spacingLeft=void 0,this.spacingRight=void 0,this.menuGap="3",this.width=null,this.minWidth=null,this.maxWidth=null,this.dataIndex=null,this.ariaCurrent=null,this._slottedMenuEl=null,this._openSettledTimer=null,this._menuCloseTimer=null,this._panelResizeObserver=null,this._panelHeightSyncRaf=null,this._onDocumentClickBound=t=>{if(!this.open)return;const e=t.composedPath(),n=e.find(o=>o instanceof HTMLElement&&o.tagName.toLowerCase()==="scb-dropdown");if(n&&n!==this){this.open=!1;return}e.includes(this)||(this.open=!1)},this._onDocumentKeydownBound=t=>{this.open&&t.key==="Escape"&&(this.open=!1)},this._onSlottedMenuOpen=()=>{this.open||(this.open=!0)},this._onSlottedMenuClose=()=>{this.open&&(this.open=!1)},this._onSlotChange=()=>{this._syncSlottedMenu(),this._applyPanelSizing(),this._applyInertByOpen(),this.requestUpdate()},this._onTriggerClick=t=>{this.hasAttribute("as-tab")||t.stopPropagation(),!this.disabled&&(this.open=!this.open)}}connectedCallback(){super.connectedCallback(),document.addEventListener("click",this._onDocumentClickBound,!0),document.addEventListener("keydown",this._onDocumentKeydownBound)}disconnectedCallback(){document.removeEventListener("click",this._onDocumentClickBound,!0),document.removeEventListener("keydown",this._onDocumentKeydownBound),this._detachSlottedMenuListeners(),this._panelResizeObserver&&(this._panelResizeObserver.disconnect(),this._panelResizeObserver=null),this._panelHeightSyncRaf!==null&&(window.cancelAnimationFrame(this._panelHeightSyncRaf),this._panelHeightSyncRaf=null),this._openSettledTimer!==null&&(window.clearTimeout(this._openSettledTimer),this._openSettledTimer=null),this._menuCloseTimer!==null&&(window.clearTimeout(this._menuCloseTimer),this._menuCloseTimer=null),super.disconnectedCallback()}firstUpdated(t){super.firstUpdated(t),this._syncSlottedMenu(),this._applyPanelVars(),this._applyPanelSizing(),this._applyChevronState(),this._applyInertByOpen(),this._setupPanelResizeObserver(),this._syncPanelMaxHeightByOpen(),this._syncOverflowVisibilityByOpen()}updated(t){super.updated(t),t.has("menuGap")&&this._applyPanelVars(),(t.has("width")||t.has("minWidth")||t.has("maxWidth"))&&this._applyPanelSizing(),(t.has("spacing")||t.has("spacingTop")||t.has("spacingBottom")||t.has("spacingLeft")||t.has("spacingRight"))&&this._applySpacing(),t.has("open")&&(this.open||this._closeAllSubMenus(),this._syncSlottedMenuOpen(),this._applyChevronState(),this._applyInertByOpen(),this._syncPanelMaxHeightByOpen(),this._syncOverflowVisibilityByOpen(),this.dispatchEvent(new CustomEvent("openchange",{bubbles:!0,composed:!0,detail:{open:this.open}})))}_applyPanelVars(){if(this.menuGap==null||String(this.menuGap).trim()===""){this.style.removeProperty("--scb-dropdown-panel-gap");return}this.style.setProperty("--scb-dropdown-panel-gap",this._mapSpacingToken(this.menuGap))}_applyPanelSizing(){const t=this.renderRoot.querySelector(".panel-surface");t&&(this.width&&String(this.width).trim()!==""?t.style.inlineSize=this.width:t.style.removeProperty("inline-size"),this.minWidth&&String(this.minWidth).trim()!==""?t.style.minInlineSize=this.minWidth:t.style.removeProperty("min-inline-size"),this.maxWidth&&String(this.maxWidth).trim()!==""?t.style.maxInlineSize=this.maxWidth:t.style.removeProperty("max-inline-size")),this._slottedMenuEl&&(this.width&&String(this.width).trim()!==""?this._slottedMenuEl.style.inlineSize=this.width:this._slottedMenuEl.style.removeProperty("inline-size"),this.minWidth&&String(this.minWidth).trim()!==""?this._slottedMenuEl.style.minInlineSize=this.minWidth:this._slottedMenuEl.style.removeProperty("min-inline-size"),this.maxWidth&&String(this.maxWidth).trim()!==""?this._slottedMenuEl.style.maxInlineSize=this.maxWidth:this._slottedMenuEl.style.removeProperty("max-inline-size")),this._schedulePanelHeightSync()}_setupPanelResizeObserver(){if(this._panelResizeObserver||typeof ResizeObserver>"u")return;const t=this._panelInnerEl;t&&(this._panelResizeObserver=new ResizeObserver(()=>{this._schedulePanelHeightSync()}),this._panelResizeObserver.observe(t))}_schedulePanelHeightSync(){this._panelHeightSyncRaf===null&&(this._panelHeightSyncRaf=window.requestAnimationFrame(()=>{this._panelHeightSyncRaf=null,this._syncPanelMaxHeightByOpen()}))}_syncPanelMaxHeightByOpen(){const t=this._panelSurfaceEl;if(!t)return;if(this._slottedMenuEl){t.style.removeProperty("--scb-dropdown-panel-current-max-height");return}if(!this.open){t.style.setProperty("--scb-dropdown-panel-current-max-height","0px");return}const e=this._panelInnerEl;if(!e)return;const n=`${Math.ceil(e.scrollHeight)}px`;t.style.getPropertyValue("--scb-dropdown-panel-current-max-height").trim()!==n&&t.style.setProperty("--scb-dropdown-panel-current-max-height",n)}_mapSpacingToken(t){const e=String(t).trim();return/^\d+$/.test(e)?`var(--spacing-${Math.max(0,Math.min(14,parseInt(e,10)))})`:e}_mapHostSpacingToken(t){if(!t)return;const e=String(t).trim();if(e)return/^\d+$/.test(e)?`var(--spacing-${Math.max(0,Math.min(14,parseInt(e,10)))})`:e}_applySpacing(){const t=this._mapHostSpacingToken(this.spacing),e=this._mapHostSpacingToken(this.spacingTop)??t,n=this._mapHostSpacingToken(this.spacingBottom)??t,o=this._mapHostSpacingToken(this.spacingLeft),i=this._mapHostSpacingToken(this.spacingRight);e?this.style.setProperty("--scb-dropdown-spacing-block-start",e):this.style.removeProperty("--scb-dropdown-spacing-block-start"),n?this.style.setProperty("--scb-dropdown-spacing-block-end",n):this.style.removeProperty("--scb-dropdown-spacing-block-end"),o?this.style.setProperty("--scb-dropdown-spacing-inline-start",o):this.style.removeProperty("--scb-dropdown-spacing-inline-start"),i?this.style.setProperty("--scb-dropdown-spacing-inline-end",i):this.style.removeProperty("--scb-dropdown-spacing-inline-end")}_syncSlottedMenu(){const e=(this._slotEl?.assignedElements({flatten:!0})??[]).find(n=>n.tagName.toLowerCase()==="scb-options-menu");if(e===this._slottedMenuEl){this._syncSlottedMenuOpen();return}this._detachSlottedMenuListeners(),this._slottedMenuEl=e??null,this._slottedMenuEl&&(this._slottedMenuEl.addEventListener("open",this._onSlottedMenuOpen),this._slottedMenuEl.addEventListener("close",this._onSlottedMenuClose),this._syncSlottedMenuOpen())}_detachSlottedMenuListeners(){this._slottedMenuEl&&(this._slottedMenuEl.removeEventListener("open",this._onSlottedMenuOpen),this._slottedMenuEl.removeEventListener("close",this._onSlottedMenuClose))}_syncSlottedMenuOpen(){if(!this._slottedMenuEl)return;if(this._menuCloseTimer!==null&&(window.clearTimeout(this._menuCloseTimer),this._menuCloseTimer=null),this.open){this._slottedMenuEl.open=!0;return}const t=this._getPanelTransitionMs();if(t<=0){this._slottedMenuEl.open=!1;return}this._menuCloseTimer=window.setTimeout(()=>{this._menuCloseTimer=null,!this.open&&this._slottedMenuEl&&(this._slottedMenuEl.open=!1)},t)}_syncOverflowVisibilityByOpen(){if(this._openSettledTimer!==null&&(window.clearTimeout(this._openSettledTimer),this._openSettledTimer=null),this.removeAttribute("data-open-settled"),!this.open)return;const t=this.renderRoot.querySelector(".panel-surface");if(!t){this.setAttribute("data-open-settled","");return}const e=this._getTransitionMs(t);if(e<=0){this.setAttribute("data-open-settled","");return}this._openSettledTimer=window.setTimeout(()=>{this._openSettledTimer=null,this.open&&this.setAttribute("data-open-settled","")},e)}_getPanelTransitionMs(){const t=this.renderRoot.querySelector(".panel-surface");return t?this._getTransitionMs(t):0}_getTransitionMs(t){const e=getComputedStyle(t),n=e.transitionDuration.split(",").map(l=>l.trim()),o=e.transitionDelay.split(",").map(l=>l.trim()),i=l=>{const d=parseFloat(l);return Number.isFinite(d)?l.endsWith("ms")?d:l.endsWith("s")?d*1e3:d:0},s=Math.max(n.length,o.length);let r=0;for(let l=0;l<s;l+=1){const d=i(n[l]??n[n.length-1]??"0s"),h=i(o[l]??o[o.length-1]??"0s");r=Math.max(r,d+h)}return Math.ceil(r)}_applyInertByOpen(){const t=this.renderRoot.querySelector(".panel");t&&(this.open?(t.removeAttribute("inert"),t.setAttribute("aria-hidden","false"),this._restoreTabIndexesIfNeeded()):(t.setAttribute("inert",""),t.setAttribute("aria-hidden","true"),this._removeTabIndexesIfNeeded()))}_supportsInert(){return"inert"in HTMLElement.prototype}_collectFocusableFromSlot(){const t=this._slotEl;if(!t)return[];const e=t.assignedElements({flatten:!0}),n=[],o=i=>{i instanceof HTMLElement&&i.matches("a,button,input,select,textarea,[tabindex]")&&n.push(i)};return e.forEach(i=>{o(i),i.querySelectorAll?.("a,button,input,select,textarea,[tabindex]").forEach(s=>o(s))}),n}_removeTabIndexesIfNeeded(){if(this._supportsInert())return;this._collectFocusableFromSlot().forEach(e=>{const n=e.getAttribute("tabindex");n!==null&&e.setAttribute("data-scb-prev-tabindex",n),e.setAttribute("tabindex","-1")})}_restoreTabIndexesIfNeeded(){if(this._supportsInert())return;this._collectFocusableFromSlot().forEach(e=>{const n=e.getAttribute("data-scb-prev-tabindex");n!==null?(e.setAttribute("tabindex",n),e.removeAttribute("data-scb-prev-tabindex")):e.removeAttribute("tabindex")})}_closeAllSubMenus(){const t=this.querySelectorAll("scb-options-sub-menu");for(const e of t)e.removeAttribute("open")}focus(t){const e=this._triggerEl;if(e?.focus){e.focus(t);return}super.focus(t)}_applyChevronState(){if(this.hasAttribute("as-tab"))return;const t=this._ensureTriggerChevronEl();t&&(t.open=this.open)}_ensureTriggerChevronEl(){const t=this._triggerEl;if(t?.tagName?.toLowerCase?.()!=="scb-button")return null;const e=t?.shadowRoot;if(!e)return null;const n=e.querySelector('scb-chevron[slot="icon"]');if(n)return n;const o=e.querySelector('md-icon[slot="icon"]')??e.querySelector("md-icon");if(!o)return null;const i=document.createElement("scb-chevron");i.setAttribute("slot","icon"),i.setAttribute("aria-hidden","true"),i.classList.add("chevron");const s=getComputedStyle(o).fontSize;return s&&i.style.setProperty("--scb-chevron-size",s),o.replaceWith(i),i}render(){const t=!!this._slottedMenuEl,e=this.hasAttribute("as-tab"),n=this.dataIndex,i=this.ariaCurrent==="page"?"page":g,s=e?b`
|
|
26
26
|
<div class="tab-wrap">
|
|
27
27
|
<button
|
|
28
28
|
type="button"
|
|
@@ -32,15 +32,15 @@ import{a as f,n as p,e as u,i as y,E as g,x as m,t as v}from"../../vendor/vendor
|
|
|
32
32
|
aria-haspopup="menu"
|
|
33
33
|
aria-expanded=${String(this.open)}
|
|
34
34
|
data-index=${n??g}
|
|
35
|
-
aria-current=${
|
|
35
|
+
aria-current=${i}
|
|
36
36
|
@click=${this._onTriggerClick}
|
|
37
37
|
>
|
|
38
38
|
${this.label}
|
|
39
|
-
<
|
|
39
|
+
<scb-chevron class="chevron" .open=${this.open}></scb-chevron>
|
|
40
40
|
</button>
|
|
41
41
|
<md-focus-ring></md-focus-ring>
|
|
42
42
|
</div>
|
|
43
|
-
`:
|
|
43
|
+
`:b`
|
|
44
44
|
<scb-button
|
|
45
45
|
data-scb-dropdown-trigger
|
|
46
46
|
label=${this.label}
|
|
@@ -51,8 +51,8 @@ import{a as f,n as p,e as u,i as y,E as g,x as m,t as v}from"../../vendor/vendor
|
|
|
51
51
|
?disabled=${this.disabled}
|
|
52
52
|
@click=${this._onTriggerClick}
|
|
53
53
|
></scb-button>
|
|
54
|
-
`;return
|
|
55
|
-
${
|
|
54
|
+
`;return b`
|
|
55
|
+
${s}
|
|
56
56
|
|
|
57
57
|
<div
|
|
58
58
|
class="panel ${t?"has-menu":""}"
|
|
@@ -235,21 +235,15 @@ import{a as f,n as p,e as u,i as y,E as g,x as m,t as v}from"../../vendor/vendor
|
|
|
235
235
|
display: block;
|
|
236
236
|
}
|
|
237
237
|
|
|
238
|
-
:host([as-tab])
|
|
239
|
-
|
|
238
|
+
:host([as-tab]) scb-chevron.chevron {
|
|
239
|
+
width: var(
|
|
240
|
+
--scb-dropdown-tab-icon-size,
|
|
241
|
+
var(--icon-size-small, 20px)
|
|
242
|
+
);
|
|
243
|
+
height: var(
|
|
240
244
|
--scb-dropdown-tab-icon-size,
|
|
241
245
|
var(--icon-size-small, 20px)
|
|
242
246
|
);
|
|
243
|
-
line-height: 1;
|
|
244
|
-
transition:
|
|
245
|
-
transform var(--motion-duration-short, 150ms)
|
|
246
|
-
var(--motion-easing-standard, ease);
|
|
247
|
-
transform-origin: center;
|
|
248
|
-
transform: rotate(0deg);
|
|
249
|
-
}
|
|
250
|
-
|
|
251
|
-
:host([as-tab][open]) md-icon.chevron {
|
|
252
|
-
transform: rotate(180deg);
|
|
253
247
|
}
|
|
254
248
|
|
|
255
249
|
|
|
@@ -309,4 +303,4 @@ import{a as f,n as p,e as u,i as y,E as g,x as m,t as v}from"../../vendor/vendor
|
|
|
309
303
|
transition: none;
|
|
310
304
|
}
|
|
311
305
|
}
|
|
312
|
-
`;
|
|
306
|
+
`;p([c({type:String})],a.prototype,"label",2);p([c({type:String})],a.prototype,"variant",2);p([c({type:String,reflect:!0})],a.prototype,"size",2);p([c({type:Boolean,reflect:!0})],a.prototype,"open",2);p([c({type:Boolean,reflect:!0})],a.prototype,"disabled",2);p([c({type:String,reflect:!0})],a.prototype,"spacing",2);p([c({type:String,attribute:"spacing-top",reflect:!0})],a.prototype,"spacingTop",2);p([c({type:String,attribute:"spacing-bottom",reflect:!0})],a.prototype,"spacingBottom",2);p([c({type:String,attribute:"spacing-left",reflect:!0})],a.prototype,"spacingLeft",2);p([c({type:String,attribute:"spacing-right",reflect:!0})],a.prototype,"spacingRight",2);p([c({type:String,attribute:"menu-gap"})],a.prototype,"menuGap",2);p([c({type:String})],a.prototype,"width",2);p([c({type:String,attribute:"min-width"})],a.prototype,"minWidth",2);p([c({type:String,attribute:"max-width"})],a.prototype,"maxWidth",2);p([c({type:String,attribute:"data-index"})],a.prototype,"dataIndex",2);p([c({type:String,attribute:"aria-current"})],a.prototype,"ariaCurrent",2);p([u("[data-scb-dropdown-trigger]")],a.prototype,"_triggerEl",2);p([u("slot")],a.prototype,"_slotEl",2);p([u(".panel-surface")],a.prototype,"_panelSurfaceEl",2);p([u(".panel-inner")],a.prototype,"_panelInnerEl",2);a=p([v("scb-dropdown")],a);
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import{a as x,n as u,r as v,i as S,x as p,E as g,t as A}from"../../vendor/vendor.js";import"../../vendor/vendor-material.js";import"../scb-grid/scb-grid-item.js";import"../scb-grid/scb-grid.js";import"../scb-link/scb-link.js";import"../scb-button/scb-button.js";import"../scb-search/scb-search.js";import"../scb-drawer/scb-drawer.js";import"../scb-menu/scb-menu.js";import"../scb-dropdown/scb-dropdown.js";import"../scb-skeleton/scb-skeleton.js";import"../scb-grid/scb-stack.js";import"../scb-list/scb-list.js";import"../../vendor/preload-helper.js";import"../scb-list/scb-list-item.js";import"../scb-divider/scb-divider.js";import"../scb-menu/scb-menu-item.js";import"../scb-menu/scb-menu-section.js";import"../scb-menu/scb-sub-menu.js";import"../scb-options-menu/scb-options-menu.js";import"../scb-options-menu/scb-options-menu-item.js";import"../scb-options-menu/scb-options-sub-menu.js";(function(){try{var e=typeof globalThis<"u"?globalThis:window;if(!e.__scb_ce_guard_installed__){e.__scb_ce_guard_installed__=!0;var t=customElements.define.bind(customElements);customElements.define=function(s,i,a){try{customElements.get(s)||t(s,i,a)}catch(n){var o=String(n||"");if(o.indexOf("already been used")===-1&&o.indexOf("NotSupportedError")===-1)throw n}}}}catch{}})();var k=Object.defineProperty,C=Object.getOwnPropertyDescriptor,h=(e,t,s,i)=>{for(var a=i>1?void 0:i?C(t,s):t,o=e.length-1,n;o>=0;o--)(n=e[o])&&(a=(i?n(t,s,a):n(a))||a);return i&&a&&k(t,s,a),a};let T=0;const $=()=>{if(typeof window>"u"||typeof document>"u"||!("customElements"in window)||document.head.querySelector("style[data-scb-header-pre-upgrade]"))return;const e=document.createElement("style");e.setAttribute("data-scb-header-pre-upgrade",""),e.textContent=`
|
|
1
|
+
import{a as x,n as u,r as v,i as S,x as p,E as g,t as A}from"../../vendor/vendor.js";import"../../vendor/vendor-material.js";import"../scb-grid/scb-grid-item.js";import"../scb-grid/scb-grid.js";import"../scb-link/scb-link.js";import"../scb-button/scb-button.js";import"../scb-search/scb-search.js";import"../scb-drawer/scb-drawer.js";import"../scb-menu/scb-menu.js";import"../scb-dropdown/scb-dropdown.js";import"../scb-skeleton/scb-skeleton.js";import"../scb-grid/scb-stack.js";import"../scb-list/scb-list.js";import"../../vendor/preload-helper.js";import"../scb-list/scb-list-item.js";import"../scb-divider/scb-divider.js";import"../scb-menu/scb-menu-item.js";import"../scb-chevron/scb-chevron.js";import"../scb-menu/scb-menu-section.js";import"../scb-menu/scb-sub-menu.js";import"../scb-options-menu/scb-options-menu.js";import"../scb-options-menu/scb-options-menu-item.js";import"../scb-options-menu/scb-options-sub-menu.js";(function(){try{var e=typeof globalThis<"u"?globalThis:window;if(!e.__scb_ce_guard_installed__){e.__scb_ce_guard_installed__=!0;var t=customElements.define.bind(customElements);customElements.define=function(s,i,a){try{customElements.get(s)||t(s,i,a)}catch(n){var o=String(n||"");if(o.indexOf("already been used")===-1&&o.indexOf("NotSupportedError")===-1)throw n}}}}catch{}})();var k=Object.defineProperty,C=Object.getOwnPropertyDescriptor,h=(e,t,s,i)=>{for(var a=i>1?void 0:i?C(t,s):t,o=e.length-1,n;o>=0;o--)(n=e[o])&&(a=(i?n(t,s,a):n(a))||a);return i&&a&&k(t,s,a),a};let T=0;const $=()=>{if(typeof window>"u"||typeof document>"u"||!("customElements"in window)||document.head.querySelector("style[data-scb-header-pre-upgrade]"))return;const e=document.createElement("style");e.setAttribute("data-scb-header-pre-upgrade",""),e.textContent=`
|
|
2
2
|
scb-header:not(:defined) {
|
|
3
3
|
display: block;
|
|
4
4
|
margin-block-start: var(--scb-header-spacing-block-start, 0);
|
|
@@ -168,4 +168,4 @@ import{_ as h}from"../../vendor/preload-helper.js";import{a as m,n as a,i as _,x
|
|
|
168
168
|
md-filled-tonal-icon-button::part(button) {
|
|
169
169
|
border-radius: var(--scb-icon-button-shape-radius) !important;
|
|
170
170
|
}
|
|
171
|
-
`;s([a({type:String})],o.prototype,"icon",2);s([a({type:Boolean,reflect:!0})],o.prototype,"filled",1);s([a({type:Boolean,attribute:"icon-filled",reflect:!0})],o.prototype,"iconFilled",1);s([a({type:String,attribute:"aria-label"})],o.prototype,"ariaLabel",2);s([a({type:String})],o.prototype,"variant",2);s([a({type:String,reflect:!0})],o.prototype,"size",2);s([a({type:String,reflect:!0})],o.prototype,"shape",2);s([a({type:Boolean,reflect:!0})],o.prototype,"toggle",2);s([a({type:Boolean,reflect:!0})],o.prototype,"selected",2);s([a({type:String})],o.prototype,"toggleofficon",2);s([a({type:String})],o.prototype,"toggleonicon",2);s([a({type:Boolean,reflect:!0})],o.prototype,"disabled",2);s([a({type:String,reflect:!0})],o.prototype,"spacing",2);s([a({type:String,attribute:"spacing-top",reflect:!0})],o.prototype,"spacingTop",2);s([a({type:String,attribute:"spacing-bottom",reflect:!0})],o.prototype,"spacingBottom",2);s([a({type:String,attribute:"spacing-left",reflect:!0})],o.prototype,"spacingLeft",2);s([a({type:String,attribute:"spacing-right",reflect:!0})],o.prototype,"spacingRight",2);s([a({type:String})],o.prototype,"href",2);s([a({type:String})],o.prototype,"target",2);s([a({type:String})],o.prototype,"rel",2);o=s([v("scb-icon-button")],o);
|
|
171
|
+
`;s([a({type:String})],o.prototype,"icon",2);s([a({type:Boolean,reflect:!0})],o.prototype,"filled",1);s([a({type:Boolean,attribute:"icon-filled",reflect:!0})],o.prototype,"iconFilled",1);s([a({type:String,attribute:"aria-label"})],o.prototype,"ariaLabel",2);s([a({type:String})],o.prototype,"variant",2);s([a({type:String,reflect:!0})],o.prototype,"size",2);s([a({type:String,reflect:!0})],o.prototype,"shape",2);s([a({type:Boolean,reflect:!0})],o.prototype,"toggle",2);s([a({type:Boolean,reflect:!0})],o.prototype,"selected",2);s([a({type:String})],o.prototype,"toggleofficon",2);s([a({type:String})],o.prototype,"toggleonicon",2);s([a({type:Boolean,reflect:!0})],o.prototype,"disabled",2);s([a({type:String,reflect:!0})],o.prototype,"spacing",2);s([a({type:String,attribute:"spacing-top",reflect:!0})],o.prototype,"spacingTop",2);s([a({type:String,attribute:"spacing-bottom",reflect:!0})],o.prototype,"spacingBottom",2);s([a({type:String,attribute:"spacing-left",reflect:!0})],o.prototype,"spacingLeft",2);s([a({type:String,attribute:"spacing-right",reflect:!0})],o.prototype,"spacingRight",2);s([a({type:String})],o.prototype,"href",2);s([a({type:String})],o.prototype,"target",2);s([a({type:String})],o.prototype,"rel",2);o=s([v("scb-icon-button")],o);
|