@aurodesignsystem-dev/auro-formkit 0.0.0-pr816.1 → 0.0.0-pr820.0
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/components/bibtemplate/dist/index.js +8 -10
- package/components/bibtemplate/dist/registered.js +8 -10
- package/components/combobox/demo/api.min.js +17 -41
- package/components/combobox/demo/index.min.js +17 -41
- package/components/combobox/dist/auro-combobox.d.ts +0 -5
- package/components/combobox/dist/index.js +17 -41
- package/components/combobox/dist/registered.js +17 -41
- package/components/counter/demo/api.min.js +10 -12
- package/components/counter/demo/index.min.js +10 -12
- package/components/counter/dist/index.js +10 -12
- package/components/counter/dist/registered.js +10 -12
- package/components/datepicker/demo/api.min.js +8 -10
- package/components/datepicker/demo/index.min.js +8 -10
- package/components/datepicker/dist/index.js +8 -10
- package/components/datepicker/dist/registered.js +8 -10
- package/components/select/demo/api.min.js +16 -40
- package/components/select/demo/index.min.js +16 -40
- package/components/select/dist/auro-select.d.ts +0 -5
- package/components/select/dist/index.js +16 -40
- package/components/select/dist/registered.js +16 -40
- package/package.json +1 -1
|
@@ -3041,7 +3041,7 @@ class AuroCounter extends LitElement {
|
|
|
3041
3041
|
tabindex="${this.disabled ? '-1' : '0'}"
|
|
3042
3042
|
>
|
|
3043
3043
|
<auro-counter-button
|
|
3044
|
-
aria-
|
|
3044
|
+
aria-label="-"
|
|
3045
3045
|
.tabindex="${'-1'}"
|
|
3046
3046
|
part="controlMinus"
|
|
3047
3047
|
@click="${() => this.decrement()}"
|
|
@@ -3056,7 +3056,7 @@ class AuroCounter extends LitElement {
|
|
|
3056
3056
|
</div>
|
|
3057
3057
|
|
|
3058
3058
|
<auro-counter-button
|
|
3059
|
-
aria-
|
|
3059
|
+
aria-label="+"
|
|
3060
3060
|
.tabindex="${'-1'}"
|
|
3061
3061
|
part="controlPlus"
|
|
3062
3062
|
@click="${() => this.increment()}"
|
|
@@ -7434,7 +7434,7 @@ var dropdownVersion = '3.0.0';
|
|
|
7434
7434
|
|
|
7435
7435
|
var colorCss$3 = css`#headerContainer{box-shadow:var(--ds-auro-dropdownbib-header-boxshadow-color)}#footerContainer{background-color:var(--ds-auro-dropdownbib-footer-container-color)}`;
|
|
7436
7436
|
|
|
7437
|
-
var styleCss$4 = css`#bibTemplate{display:flex;overflow:hidden;height:100%;max-height:100%;flex-direction:column}#headerContainer{display:flex;flex-direction:column;
|
|
7437
|
+
var styleCss$4 = css`#bibTemplate{display:flex;overflow:hidden;height:100%;max-height:100%;flex-direction:column}#headerContainer{display:flex;flex-direction:column}#header{display:flex;width:100%;min-height:var(--ds-size-1000, 5rem);box-sizing:border-box;align-items:end;padding-top:var(--ds-size-400, 2rem);padding-right:var(--ds-size-700, 3.5rem);padding-left:var(--ds-size-200, 1rem);pointer-events:none}#subheader{width:100%}#subheader ::slotted([auro-input]){box-sizing:border-box;padding:0 var(--ds-size-200, 1rem)}#closeButton{position:absolute;top:var(--ds-size-400, 2rem);right:var(--ds-size-200, 1rem);border:none;background-color:transparent;cursor:pointer}#bodyContainer{position:relative;overflow:auto;flex:1 1 100%}:host([isfullscreen]) #bibTemplate{max-height:100dvh}:host([isfullscreen]) #bodyContainer{margin-top:var(--ds-size-100, 0.5rem)}#footerContainer{position:absolute;right:0;bottom:0;left:0;padding:var(--ds-size-200, 1rem)}`;
|
|
7438
7438
|
|
|
7439
7439
|
var tokenCss = css`:host{--ds-auro-dropdownbib-header-boxshadow-color: var(--ds-elevation-200, 0px 0px 10px rgba(0, 0, 0, 0.15));--ds-auro-dropdownbib-footer-container-color: var(--ds-basic-color-surface-default, #ffffff)}`;
|
|
7440
7440
|
|
|
@@ -9338,15 +9338,13 @@ class AuroBibtemplate extends LitElement {
|
|
|
9338
9338
|
<div id="bibTemplate" part="bibtemplate">
|
|
9339
9339
|
${this.isFullscreen ? html$1`
|
|
9340
9340
|
<div id="headerContainer">
|
|
9341
|
-
|
|
9342
|
-
<${this.
|
|
9343
|
-
|
|
9344
|
-
|
|
9345
|
-
|
|
9346
|
-
|
|
9347
|
-
|
|
9348
|
-
</div>
|
|
9349
|
-
<span class="subheader">
|
|
9341
|
+
<${this.buttonTag} id="closeButton" aria-label="Close" variant="ghost" shape="circle" size="sm" @click="${this.onCloseButtonClick}">
|
|
9342
|
+
<${this.iconTag} category="interface" name="x-lg"></${this.iconTag}>
|
|
9343
|
+
</${this.buttonTag}>
|
|
9344
|
+
<${this.headerTag} display="${this.large ? 'display' : '600'}" level="3" size="none" id="header" no-margin-block>
|
|
9345
|
+
<slot name="header"></slot>
|
|
9346
|
+
</${this.headerTag}>
|
|
9347
|
+
<span id="subheader">
|
|
9350
9348
|
<slot name="subheader"></slot>
|
|
9351
9349
|
</span>
|
|
9352
9350
|
</div>` : null}
|
|
@@ -3041,7 +3041,7 @@ class AuroCounter extends LitElement {
|
|
|
3041
3041
|
tabindex="${this.disabled ? '-1' : '0'}"
|
|
3042
3042
|
>
|
|
3043
3043
|
<auro-counter-button
|
|
3044
|
-
aria-
|
|
3044
|
+
aria-label="-"
|
|
3045
3045
|
.tabindex="${'-1'}"
|
|
3046
3046
|
part="controlMinus"
|
|
3047
3047
|
@click="${() => this.decrement()}"
|
|
@@ -3056,7 +3056,7 @@ class AuroCounter extends LitElement {
|
|
|
3056
3056
|
</div>
|
|
3057
3057
|
|
|
3058
3058
|
<auro-counter-button
|
|
3059
|
-
aria-
|
|
3059
|
+
aria-label="+"
|
|
3060
3060
|
.tabindex="${'-1'}"
|
|
3061
3061
|
part="controlPlus"
|
|
3062
3062
|
@click="${() => this.increment()}"
|
|
@@ -7434,7 +7434,7 @@ var dropdownVersion = '3.0.0';
|
|
|
7434
7434
|
|
|
7435
7435
|
var colorCss$3 = css`#headerContainer{box-shadow:var(--ds-auro-dropdownbib-header-boxshadow-color)}#footerContainer{background-color:var(--ds-auro-dropdownbib-footer-container-color)}`;
|
|
7436
7436
|
|
|
7437
|
-
var styleCss$4 = css`#bibTemplate{display:flex;overflow:hidden;height:100%;max-height:100%;flex-direction:column}#headerContainer{display:flex;flex-direction:column;
|
|
7437
|
+
var styleCss$4 = css`#bibTemplate{display:flex;overflow:hidden;height:100%;max-height:100%;flex-direction:column}#headerContainer{display:flex;flex-direction:column}#header{display:flex;width:100%;min-height:var(--ds-size-1000, 5rem);box-sizing:border-box;align-items:end;padding-top:var(--ds-size-400, 2rem);padding-right:var(--ds-size-700, 3.5rem);padding-left:var(--ds-size-200, 1rem);pointer-events:none}#subheader{width:100%}#subheader ::slotted([auro-input]){box-sizing:border-box;padding:0 var(--ds-size-200, 1rem)}#closeButton{position:absolute;top:var(--ds-size-400, 2rem);right:var(--ds-size-200, 1rem);border:none;background-color:transparent;cursor:pointer}#bodyContainer{position:relative;overflow:auto;flex:1 1 100%}:host([isfullscreen]) #bibTemplate{max-height:100dvh}:host([isfullscreen]) #bodyContainer{margin-top:var(--ds-size-100, 0.5rem)}#footerContainer{position:absolute;right:0;bottom:0;left:0;padding:var(--ds-size-200, 1rem)}`;
|
|
7438
7438
|
|
|
7439
7439
|
var tokenCss = css`:host{--ds-auro-dropdownbib-header-boxshadow-color: var(--ds-elevation-200, 0px 0px 10px rgba(0, 0, 0, 0.15));--ds-auro-dropdownbib-footer-container-color: var(--ds-basic-color-surface-default, #ffffff)}`;
|
|
7440
7440
|
|
|
@@ -9338,15 +9338,13 @@ class AuroBibtemplate extends LitElement {
|
|
|
9338
9338
|
<div id="bibTemplate" part="bibtemplate">
|
|
9339
9339
|
${this.isFullscreen ? html$1`
|
|
9340
9340
|
<div id="headerContainer">
|
|
9341
|
-
|
|
9342
|
-
<${this.
|
|
9343
|
-
|
|
9344
|
-
|
|
9345
|
-
|
|
9346
|
-
|
|
9347
|
-
|
|
9348
|
-
</div>
|
|
9349
|
-
<span class="subheader">
|
|
9341
|
+
<${this.buttonTag} id="closeButton" aria-label="Close" variant="ghost" shape="circle" size="sm" @click="${this.onCloseButtonClick}">
|
|
9342
|
+
<${this.iconTag} category="interface" name="x-lg"></${this.iconTag}>
|
|
9343
|
+
</${this.buttonTag}>
|
|
9344
|
+
<${this.headerTag} display="${this.large ? 'display' : '600'}" level="3" size="none" id="header" no-margin-block>
|
|
9345
|
+
<slot name="header"></slot>
|
|
9346
|
+
</${this.headerTag}>
|
|
9347
|
+
<span id="subheader">
|
|
9350
9348
|
<slot name="subheader"></slot>
|
|
9351
9349
|
</span>
|
|
9352
9350
|
</div>` : null}
|
|
@@ -11165,7 +11165,7 @@ class CalendarUtilities {
|
|
|
11165
11165
|
|
|
11166
11166
|
var colorCss$3$2 = i$2`#headerContainer{box-shadow:var(--ds-auro-dropdownbib-header-boxshadow-color)}#footerContainer{background-color:var(--ds-auro-dropdownbib-footer-container-color)}`;
|
|
11167
11167
|
|
|
11168
|
-
var styleCss$4$1 = i$2`#bibTemplate{display:flex;overflow:hidden;height:100%;max-height:100%;flex-direction:column}#headerContainer{display:flex;flex-direction:column;
|
|
11168
|
+
var styleCss$4$1 = i$2`#bibTemplate{display:flex;overflow:hidden;height:100%;max-height:100%;flex-direction:column}#headerContainer{display:flex;flex-direction:column}#header{display:flex;width:100%;min-height:var(--ds-size-1000, 5rem);box-sizing:border-box;align-items:end;padding-top:var(--ds-size-400, 2rem);padding-right:var(--ds-size-700, 3.5rem);padding-left:var(--ds-size-200, 1rem);pointer-events:none}#subheader{width:100%}#subheader ::slotted([auro-input]){box-sizing:border-box;padding:0 var(--ds-size-200, 1rem)}#closeButton{position:absolute;top:var(--ds-size-400, 2rem);right:var(--ds-size-200, 1rem);border:none;background-color:transparent;cursor:pointer}#bodyContainer{position:relative;overflow:auto;flex:1 1 100%}:host([isfullscreen]) #bibTemplate{max-height:100dvh}:host([isfullscreen]) #bodyContainer{margin-top:var(--ds-size-100, 0.5rem)}#footerContainer{position:absolute;right:0;bottom:0;left:0;padding:var(--ds-size-200, 1rem)}`;
|
|
11169
11169
|
|
|
11170
11170
|
var tokenCss = i$2`:host{--ds-auro-dropdownbib-header-boxshadow-color: var(--ds-elevation-200, 0px 0px 10px rgba(0, 0, 0, 0.15));--ds-auro-dropdownbib-footer-container-color: var(--ds-basic-color-surface-default, #ffffff)}`;
|
|
11171
11171
|
|
|
@@ -13069,15 +13069,13 @@ class AuroBibtemplate extends i {
|
|
|
13069
13069
|
<div id="bibTemplate" part="bibtemplate">
|
|
13070
13070
|
${this.isFullscreen ? u$3`
|
|
13071
13071
|
<div id="headerContainer">
|
|
13072
|
-
|
|
13073
|
-
<${this.
|
|
13074
|
-
|
|
13075
|
-
|
|
13076
|
-
|
|
13077
|
-
|
|
13078
|
-
|
|
13079
|
-
</div>
|
|
13080
|
-
<span class="subheader">
|
|
13072
|
+
<${this.buttonTag} id="closeButton" aria-label="Close" variant="ghost" shape="circle" size="sm" @click="${this.onCloseButtonClick}">
|
|
13073
|
+
<${this.iconTag} category="interface" name="x-lg"></${this.iconTag}>
|
|
13074
|
+
</${this.buttonTag}>
|
|
13075
|
+
<${this.headerTag} display="${this.large ? 'display' : '600'}" level="3" size="none" id="header" no-margin-block>
|
|
13076
|
+
<slot name="header"></slot>
|
|
13077
|
+
</${this.headerTag}>
|
|
13078
|
+
<span id="subheader">
|
|
13081
13079
|
<slot name="subheader"></slot>
|
|
13082
13080
|
</span>
|
|
13083
13081
|
</div>` : null}
|
|
@@ -10906,7 +10906,7 @@ class CalendarUtilities {
|
|
|
10906
10906
|
|
|
10907
10907
|
var colorCss$3$2 = i$2`#headerContainer{box-shadow:var(--ds-auro-dropdownbib-header-boxshadow-color)}#footerContainer{background-color:var(--ds-auro-dropdownbib-footer-container-color)}`;
|
|
10908
10908
|
|
|
10909
|
-
var styleCss$4$1 = i$2`#bibTemplate{display:flex;overflow:hidden;height:100%;max-height:100%;flex-direction:column}#headerContainer{display:flex;flex-direction:column;
|
|
10909
|
+
var styleCss$4$1 = i$2`#bibTemplate{display:flex;overflow:hidden;height:100%;max-height:100%;flex-direction:column}#headerContainer{display:flex;flex-direction:column}#header{display:flex;width:100%;min-height:var(--ds-size-1000, 5rem);box-sizing:border-box;align-items:end;padding-top:var(--ds-size-400, 2rem);padding-right:var(--ds-size-700, 3.5rem);padding-left:var(--ds-size-200, 1rem);pointer-events:none}#subheader{width:100%}#subheader ::slotted([auro-input]){box-sizing:border-box;padding:0 var(--ds-size-200, 1rem)}#closeButton{position:absolute;top:var(--ds-size-400, 2rem);right:var(--ds-size-200, 1rem);border:none;background-color:transparent;cursor:pointer}#bodyContainer{position:relative;overflow:auto;flex:1 1 100%}:host([isfullscreen]) #bibTemplate{max-height:100dvh}:host([isfullscreen]) #bodyContainer{margin-top:var(--ds-size-100, 0.5rem)}#footerContainer{position:absolute;right:0;bottom:0;left:0;padding:var(--ds-size-200, 1rem)}`;
|
|
10910
10910
|
|
|
10911
10911
|
var tokenCss = i$2`:host{--ds-auro-dropdownbib-header-boxshadow-color: var(--ds-elevation-200, 0px 0px 10px rgba(0, 0, 0, 0.15));--ds-auro-dropdownbib-footer-container-color: var(--ds-basic-color-surface-default, #ffffff)}`;
|
|
10912
10912
|
|
|
@@ -12810,15 +12810,13 @@ class AuroBibtemplate extends i {
|
|
|
12810
12810
|
<div id="bibTemplate" part="bibtemplate">
|
|
12811
12811
|
${this.isFullscreen ? u$3`
|
|
12812
12812
|
<div id="headerContainer">
|
|
12813
|
-
|
|
12814
|
-
<${this.
|
|
12815
|
-
|
|
12816
|
-
|
|
12817
|
-
|
|
12818
|
-
|
|
12819
|
-
|
|
12820
|
-
</div>
|
|
12821
|
-
<span class="subheader">
|
|
12813
|
+
<${this.buttonTag} id="closeButton" aria-label="Close" variant="ghost" shape="circle" size="sm" @click="${this.onCloseButtonClick}">
|
|
12814
|
+
<${this.iconTag} category="interface" name="x-lg"></${this.iconTag}>
|
|
12815
|
+
</${this.buttonTag}>
|
|
12816
|
+
<${this.headerTag} display="${this.large ? 'display' : '600'}" level="3" size="none" id="header" no-margin-block>
|
|
12817
|
+
<slot name="header"></slot>
|
|
12818
|
+
</${this.headerTag}>
|
|
12819
|
+
<span id="subheader">
|
|
12822
12820
|
<slot name="subheader"></slot>
|
|
12823
12821
|
</span>
|
|
12824
12822
|
</div>` : null}
|
|
@@ -10855,7 +10855,7 @@ class CalendarUtilities {
|
|
|
10855
10855
|
|
|
10856
10856
|
var colorCss$3$2 = css`#headerContainer{box-shadow:var(--ds-auro-dropdownbib-header-boxshadow-color)}#footerContainer{background-color:var(--ds-auro-dropdownbib-footer-container-color)}`;
|
|
10857
10857
|
|
|
10858
|
-
var styleCss$4$1 = css`#bibTemplate{display:flex;overflow:hidden;height:100%;max-height:100%;flex-direction:column}#headerContainer{display:flex;flex-direction:column;
|
|
10858
|
+
var styleCss$4$1 = css`#bibTemplate{display:flex;overflow:hidden;height:100%;max-height:100%;flex-direction:column}#headerContainer{display:flex;flex-direction:column}#header{display:flex;width:100%;min-height:var(--ds-size-1000, 5rem);box-sizing:border-box;align-items:end;padding-top:var(--ds-size-400, 2rem);padding-right:var(--ds-size-700, 3.5rem);padding-left:var(--ds-size-200, 1rem);pointer-events:none}#subheader{width:100%}#subheader ::slotted([auro-input]){box-sizing:border-box;padding:0 var(--ds-size-200, 1rem)}#closeButton{position:absolute;top:var(--ds-size-400, 2rem);right:var(--ds-size-200, 1rem);border:none;background-color:transparent;cursor:pointer}#bodyContainer{position:relative;overflow:auto;flex:1 1 100%}:host([isfullscreen]) #bibTemplate{max-height:100dvh}:host([isfullscreen]) #bodyContainer{margin-top:var(--ds-size-100, 0.5rem)}#footerContainer{position:absolute;right:0;bottom:0;left:0;padding:var(--ds-size-200, 1rem)}`;
|
|
10859
10859
|
|
|
10860
10860
|
var tokenCss = css`:host{--ds-auro-dropdownbib-header-boxshadow-color: var(--ds-elevation-200, 0px 0px 10px rgba(0, 0, 0, 0.15));--ds-auro-dropdownbib-footer-container-color: var(--ds-basic-color-surface-default, #ffffff)}`;
|
|
10861
10861
|
|
|
@@ -12759,15 +12759,13 @@ class AuroBibtemplate extends LitElement {
|
|
|
12759
12759
|
<div id="bibTemplate" part="bibtemplate">
|
|
12760
12760
|
${this.isFullscreen ? html$1`
|
|
12761
12761
|
<div id="headerContainer">
|
|
12762
|
-
|
|
12763
|
-
<${this.
|
|
12764
|
-
|
|
12765
|
-
|
|
12766
|
-
|
|
12767
|
-
|
|
12768
|
-
|
|
12769
|
-
</div>
|
|
12770
|
-
<span class="subheader">
|
|
12762
|
+
<${this.buttonTag} id="closeButton" aria-label="Close" variant="ghost" shape="circle" size="sm" @click="${this.onCloseButtonClick}">
|
|
12763
|
+
<${this.iconTag} category="interface" name="x-lg"></${this.iconTag}>
|
|
12764
|
+
</${this.buttonTag}>
|
|
12765
|
+
<${this.headerTag} display="${this.large ? 'display' : '600'}" level="3" size="none" id="header" no-margin-block>
|
|
12766
|
+
<slot name="header"></slot>
|
|
12767
|
+
</${this.headerTag}>
|
|
12768
|
+
<span id="subheader">
|
|
12771
12769
|
<slot name="subheader"></slot>
|
|
12772
12770
|
</span>
|
|
12773
12771
|
</div>` : null}
|
|
@@ -10855,7 +10855,7 @@ class CalendarUtilities {
|
|
|
10855
10855
|
|
|
10856
10856
|
var colorCss$3$2 = css`#headerContainer{box-shadow:var(--ds-auro-dropdownbib-header-boxshadow-color)}#footerContainer{background-color:var(--ds-auro-dropdownbib-footer-container-color)}`;
|
|
10857
10857
|
|
|
10858
|
-
var styleCss$4$1 = css`#bibTemplate{display:flex;overflow:hidden;height:100%;max-height:100%;flex-direction:column}#headerContainer{display:flex;flex-direction:column;
|
|
10858
|
+
var styleCss$4$1 = css`#bibTemplate{display:flex;overflow:hidden;height:100%;max-height:100%;flex-direction:column}#headerContainer{display:flex;flex-direction:column}#header{display:flex;width:100%;min-height:var(--ds-size-1000, 5rem);box-sizing:border-box;align-items:end;padding-top:var(--ds-size-400, 2rem);padding-right:var(--ds-size-700, 3.5rem);padding-left:var(--ds-size-200, 1rem);pointer-events:none}#subheader{width:100%}#subheader ::slotted([auro-input]){box-sizing:border-box;padding:0 var(--ds-size-200, 1rem)}#closeButton{position:absolute;top:var(--ds-size-400, 2rem);right:var(--ds-size-200, 1rem);border:none;background-color:transparent;cursor:pointer}#bodyContainer{position:relative;overflow:auto;flex:1 1 100%}:host([isfullscreen]) #bibTemplate{max-height:100dvh}:host([isfullscreen]) #bodyContainer{margin-top:var(--ds-size-100, 0.5rem)}#footerContainer{position:absolute;right:0;bottom:0;left:0;padding:var(--ds-size-200, 1rem)}`;
|
|
10859
10859
|
|
|
10860
10860
|
var tokenCss = css`:host{--ds-auro-dropdownbib-header-boxshadow-color: var(--ds-elevation-200, 0px 0px 10px rgba(0, 0, 0, 0.15));--ds-auro-dropdownbib-footer-container-color: var(--ds-basic-color-surface-default, #ffffff)}`;
|
|
10861
10861
|
|
|
@@ -12759,15 +12759,13 @@ class AuroBibtemplate extends LitElement {
|
|
|
12759
12759
|
<div id="bibTemplate" part="bibtemplate">
|
|
12760
12760
|
${this.isFullscreen ? html$1`
|
|
12761
12761
|
<div id="headerContainer">
|
|
12762
|
-
|
|
12763
|
-
<${this.
|
|
12764
|
-
|
|
12765
|
-
|
|
12766
|
-
|
|
12767
|
-
|
|
12768
|
-
|
|
12769
|
-
</div>
|
|
12770
|
-
<span class="subheader">
|
|
12762
|
+
<${this.buttonTag} id="closeButton" aria-label="Close" variant="ghost" shape="circle" size="sm" @click="${this.onCloseButtonClick}">
|
|
12763
|
+
<${this.iconTag} category="interface" name="x-lg"></${this.iconTag}>
|
|
12764
|
+
</${this.buttonTag}>
|
|
12765
|
+
<${this.headerTag} display="${this.large ? 'display' : '600'}" level="3" size="none" id="header" no-margin-block>
|
|
12766
|
+
<slot name="header"></slot>
|
|
12767
|
+
</${this.headerTag}>
|
|
12768
|
+
<span id="subheader">
|
|
12771
12769
|
<slot name="subheader"></slot>
|
|
12772
12770
|
</span>
|
|
12773
12771
|
</div>` : null}
|
|
@@ -5496,7 +5496,7 @@ var dropdownVersion = '3.0.0';
|
|
|
5496
5496
|
|
|
5497
5497
|
var colorCss$3$1 = i$5`#headerContainer{box-shadow:var(--ds-auro-dropdownbib-header-boxshadow-color)}#footerContainer{background-color:var(--ds-auro-dropdownbib-footer-container-color)}`;
|
|
5498
5498
|
|
|
5499
|
-
var styleCss$4$1 = i$5`#bibTemplate{display:flex;overflow:hidden;height:100%;max-height:100%;flex-direction:column}#headerContainer{display:flex;flex-direction:column;
|
|
5499
|
+
var styleCss$4$1 = i$5`#bibTemplate{display:flex;overflow:hidden;height:100%;max-height:100%;flex-direction:column}#headerContainer{display:flex;flex-direction:column}#header{display:flex;width:100%;min-height:var(--ds-size-1000, 5rem);box-sizing:border-box;align-items:end;padding-top:var(--ds-size-400, 2rem);padding-right:var(--ds-size-700, 3.5rem);padding-left:var(--ds-size-200, 1rem);pointer-events:none}#subheader{width:100%}#subheader ::slotted([auro-input]){box-sizing:border-box;padding:0 var(--ds-size-200, 1rem)}#closeButton{position:absolute;top:var(--ds-size-400, 2rem);right:var(--ds-size-200, 1rem);border:none;background-color:transparent;cursor:pointer}#bodyContainer{position:relative;overflow:auto;flex:1 1 100%}:host([isfullscreen]) #bibTemplate{max-height:100dvh}:host([isfullscreen]) #bodyContainer{margin-top:var(--ds-size-100, 0.5rem)}#footerContainer{position:absolute;right:0;bottom:0;left:0;padding:var(--ds-size-200, 1rem)}`;
|
|
5500
5500
|
|
|
5501
5501
|
var tokenCss = i$5`:host{--ds-auro-dropdownbib-header-boxshadow-color: var(--ds-elevation-200, 0px 0px 10px rgba(0, 0, 0, 0.15));--ds-auro-dropdownbib-footer-container-color: var(--ds-basic-color-surface-default, #ffffff)}`;
|
|
5502
5502
|
|
|
@@ -7400,15 +7400,13 @@ class AuroBibtemplate extends i$2 {
|
|
|
7400
7400
|
<div id="bibTemplate" part="bibtemplate">
|
|
7401
7401
|
${this.isFullscreen ? u`
|
|
7402
7402
|
<div id="headerContainer">
|
|
7403
|
-
|
|
7404
|
-
<${this.
|
|
7405
|
-
|
|
7406
|
-
|
|
7407
|
-
|
|
7408
|
-
|
|
7409
|
-
|
|
7410
|
-
</div>
|
|
7411
|
-
<span class="subheader">
|
|
7403
|
+
<${this.buttonTag} id="closeButton" aria-label="Close" variant="ghost" shape="circle" size="sm" @click="${this.onCloseButtonClick}">
|
|
7404
|
+
<${this.iconTag} category="interface" name="x-lg"></${this.iconTag}>
|
|
7405
|
+
</${this.buttonTag}>
|
|
7406
|
+
<${this.headerTag} display="${this.large ? 'display' : '600'}" level="3" size="none" id="header" no-margin-block>
|
|
7407
|
+
<slot name="header"></slot>
|
|
7408
|
+
</${this.headerTag}>
|
|
7409
|
+
<span id="subheader">
|
|
7412
7410
|
<slot name="subheader"></slot>
|
|
7413
7411
|
</span>
|
|
7414
7412
|
</div>` : null}
|
|
@@ -8110,7 +8108,6 @@ class AuroSelect extends AuroElement$4 {
|
|
|
8110
8108
|
this.isPopoverVisible = this.dropdown.isPopoverVisible;
|
|
8111
8109
|
|
|
8112
8110
|
if (this.dropdown.isPopoverVisible) {
|
|
8113
|
-
this.updateMenuShapeSize();
|
|
8114
8111
|
// wait til the bib gets fully rendered
|
|
8115
8112
|
setTimeout(() => {
|
|
8116
8113
|
if (this.dropdown.isBibFullscreen) {
|
|
@@ -8126,10 +8123,6 @@ class AuroSelect extends AuroElement$4 {
|
|
|
8126
8123
|
}
|
|
8127
8124
|
});
|
|
8128
8125
|
|
|
8129
|
-
this.dropdown.addEventListener('auroDropdown-strategy-change', () => {
|
|
8130
|
-
this.updateMenuShapeSize();
|
|
8131
|
-
});
|
|
8132
|
-
|
|
8133
8126
|
// setting up bibtemplate
|
|
8134
8127
|
this.bibtemplate = this.dropdown.querySelector(this.bibtemplateTag._$litStatic$);
|
|
8135
8128
|
|
|
@@ -8194,30 +8187,6 @@ class AuroSelect extends AuroElement$4 {
|
|
|
8194
8187
|
this.dropdown.requestUpdate();
|
|
8195
8188
|
}
|
|
8196
8189
|
|
|
8197
|
-
/**
|
|
8198
|
-
* Update menu to default for fullscreen bib, otherwise to this.size and this.shape.
|
|
8199
|
-
* @private
|
|
8200
|
-
*/
|
|
8201
|
-
updateMenuShapeSize() {
|
|
8202
|
-
if (!this.menu) {
|
|
8203
|
-
return;
|
|
8204
|
-
}
|
|
8205
|
-
|
|
8206
|
-
if (this.dropdown && this.dropdown.isBibFullscreen) {
|
|
8207
|
-
this.menu.setAttribute('size', 'md');
|
|
8208
|
-
this.menu.setAttribute('shape', 'box');
|
|
8209
|
-
} else {
|
|
8210
|
-
// set menu's default size if there it's not specified.
|
|
8211
|
-
if (!this.menu.getAttribute('size')) {
|
|
8212
|
-
this.menu.setAttribute('size', this.layout !== 'emphasized' ? 'md' : this.size);
|
|
8213
|
-
}
|
|
8214
|
-
|
|
8215
|
-
if (!this.getAttribute('shape')) {
|
|
8216
|
-
this.menu.setAttribute('shape', this.layout === 'classic' ? 'box' : this.shape);
|
|
8217
|
-
}
|
|
8218
|
-
}
|
|
8219
|
-
}
|
|
8220
|
-
|
|
8221
8190
|
/**
|
|
8222
8191
|
* Binds all behavior needed to the menu after rendering.
|
|
8223
8192
|
* @private
|
|
@@ -8234,7 +8203,14 @@ class AuroSelect extends AuroElement$4 {
|
|
|
8234
8203
|
return;
|
|
8235
8204
|
}
|
|
8236
8205
|
|
|
8237
|
-
|
|
8206
|
+
// set menu's default size if there it's not specified.
|
|
8207
|
+
if (!this.menu.getAttribute('size')) {
|
|
8208
|
+
this.menu.setAttribute('size', this.layout !== 'emphasized' ? 'md' : this.size);
|
|
8209
|
+
}
|
|
8210
|
+
|
|
8211
|
+
if (!this.getAttribute('shape')) {
|
|
8212
|
+
this.menu.setAttribute('shape', this.layout === 'classic' ? 'box' : this.shape);
|
|
8213
|
+
}
|
|
8238
8214
|
|
|
8239
8215
|
if (this.multiSelect) {
|
|
8240
8216
|
this.menu.multiSelect = this.multiSelect;
|
|
@@ -5404,7 +5404,7 @@ var dropdownVersion = '3.0.0';
|
|
|
5404
5404
|
|
|
5405
5405
|
var colorCss$3$1 = i$5`#headerContainer{box-shadow:var(--ds-auro-dropdownbib-header-boxshadow-color)}#footerContainer{background-color:var(--ds-auro-dropdownbib-footer-container-color)}`;
|
|
5406
5406
|
|
|
5407
|
-
var styleCss$4$1 = i$5`#bibTemplate{display:flex;overflow:hidden;height:100%;max-height:100%;flex-direction:column}#headerContainer{display:flex;flex-direction:column;
|
|
5407
|
+
var styleCss$4$1 = i$5`#bibTemplate{display:flex;overflow:hidden;height:100%;max-height:100%;flex-direction:column}#headerContainer{display:flex;flex-direction:column}#header{display:flex;width:100%;min-height:var(--ds-size-1000, 5rem);box-sizing:border-box;align-items:end;padding-top:var(--ds-size-400, 2rem);padding-right:var(--ds-size-700, 3.5rem);padding-left:var(--ds-size-200, 1rem);pointer-events:none}#subheader{width:100%}#subheader ::slotted([auro-input]){box-sizing:border-box;padding:0 var(--ds-size-200, 1rem)}#closeButton{position:absolute;top:var(--ds-size-400, 2rem);right:var(--ds-size-200, 1rem);border:none;background-color:transparent;cursor:pointer}#bodyContainer{position:relative;overflow:auto;flex:1 1 100%}:host([isfullscreen]) #bibTemplate{max-height:100dvh}:host([isfullscreen]) #bodyContainer{margin-top:var(--ds-size-100, 0.5rem)}#footerContainer{position:absolute;right:0;bottom:0;left:0;padding:var(--ds-size-200, 1rem)}`;
|
|
5408
5408
|
|
|
5409
5409
|
var tokenCss = i$5`:host{--ds-auro-dropdownbib-header-boxshadow-color: var(--ds-elevation-200, 0px 0px 10px rgba(0, 0, 0, 0.15));--ds-auro-dropdownbib-footer-container-color: var(--ds-basic-color-surface-default, #ffffff)}`;
|
|
5410
5410
|
|
|
@@ -7308,15 +7308,13 @@ class AuroBibtemplate extends i$2 {
|
|
|
7308
7308
|
<div id="bibTemplate" part="bibtemplate">
|
|
7309
7309
|
${this.isFullscreen ? u`
|
|
7310
7310
|
<div id="headerContainer">
|
|
7311
|
-
|
|
7312
|
-
<${this.
|
|
7313
|
-
|
|
7314
|
-
|
|
7315
|
-
|
|
7316
|
-
|
|
7317
|
-
|
|
7318
|
-
</div>
|
|
7319
|
-
<span class="subheader">
|
|
7311
|
+
<${this.buttonTag} id="closeButton" aria-label="Close" variant="ghost" shape="circle" size="sm" @click="${this.onCloseButtonClick}">
|
|
7312
|
+
<${this.iconTag} category="interface" name="x-lg"></${this.iconTag}>
|
|
7313
|
+
</${this.buttonTag}>
|
|
7314
|
+
<${this.headerTag} display="${this.large ? 'display' : '600'}" level="3" size="none" id="header" no-margin-block>
|
|
7315
|
+
<slot name="header"></slot>
|
|
7316
|
+
</${this.headerTag}>
|
|
7317
|
+
<span id="subheader">
|
|
7320
7318
|
<slot name="subheader"></slot>
|
|
7321
7319
|
</span>
|
|
7322
7320
|
</div>` : null}
|
|
@@ -8018,7 +8016,6 @@ class AuroSelect extends AuroElement$4 {
|
|
|
8018
8016
|
this.isPopoverVisible = this.dropdown.isPopoverVisible;
|
|
8019
8017
|
|
|
8020
8018
|
if (this.dropdown.isPopoverVisible) {
|
|
8021
|
-
this.updateMenuShapeSize();
|
|
8022
8019
|
// wait til the bib gets fully rendered
|
|
8023
8020
|
setTimeout(() => {
|
|
8024
8021
|
if (this.dropdown.isBibFullscreen) {
|
|
@@ -8034,10 +8031,6 @@ class AuroSelect extends AuroElement$4 {
|
|
|
8034
8031
|
}
|
|
8035
8032
|
});
|
|
8036
8033
|
|
|
8037
|
-
this.dropdown.addEventListener('auroDropdown-strategy-change', () => {
|
|
8038
|
-
this.updateMenuShapeSize();
|
|
8039
|
-
});
|
|
8040
|
-
|
|
8041
8034
|
// setting up bibtemplate
|
|
8042
8035
|
this.bibtemplate = this.dropdown.querySelector(this.bibtemplateTag._$litStatic$);
|
|
8043
8036
|
|
|
@@ -8102,30 +8095,6 @@ class AuroSelect extends AuroElement$4 {
|
|
|
8102
8095
|
this.dropdown.requestUpdate();
|
|
8103
8096
|
}
|
|
8104
8097
|
|
|
8105
|
-
/**
|
|
8106
|
-
* Update menu to default for fullscreen bib, otherwise to this.size and this.shape.
|
|
8107
|
-
* @private
|
|
8108
|
-
*/
|
|
8109
|
-
updateMenuShapeSize() {
|
|
8110
|
-
if (!this.menu) {
|
|
8111
|
-
return;
|
|
8112
|
-
}
|
|
8113
|
-
|
|
8114
|
-
if (this.dropdown && this.dropdown.isBibFullscreen) {
|
|
8115
|
-
this.menu.setAttribute('size', 'md');
|
|
8116
|
-
this.menu.setAttribute('shape', 'box');
|
|
8117
|
-
} else {
|
|
8118
|
-
// set menu's default size if there it's not specified.
|
|
8119
|
-
if (!this.menu.getAttribute('size')) {
|
|
8120
|
-
this.menu.setAttribute('size', this.layout !== 'emphasized' ? 'md' : this.size);
|
|
8121
|
-
}
|
|
8122
|
-
|
|
8123
|
-
if (!this.getAttribute('shape')) {
|
|
8124
|
-
this.menu.setAttribute('shape', this.layout === 'classic' ? 'box' : this.shape);
|
|
8125
|
-
}
|
|
8126
|
-
}
|
|
8127
|
-
}
|
|
8128
|
-
|
|
8129
8098
|
/**
|
|
8130
8099
|
* Binds all behavior needed to the menu after rendering.
|
|
8131
8100
|
* @private
|
|
@@ -8142,7 +8111,14 @@ class AuroSelect extends AuroElement$4 {
|
|
|
8142
8111
|
return;
|
|
8143
8112
|
}
|
|
8144
8113
|
|
|
8145
|
-
|
|
8114
|
+
// set menu's default size if there it's not specified.
|
|
8115
|
+
if (!this.menu.getAttribute('size')) {
|
|
8116
|
+
this.menu.setAttribute('size', this.layout !== 'emphasized' ? 'md' : this.size);
|
|
8117
|
+
}
|
|
8118
|
+
|
|
8119
|
+
if (!this.getAttribute('shape')) {
|
|
8120
|
+
this.menu.setAttribute('shape', this.layout === 'classic' ? 'box' : this.shape);
|
|
8121
|
+
}
|
|
8146
8122
|
|
|
8147
8123
|
if (this.multiSelect) {
|
|
8148
8124
|
this.menu.multiSelect = this.multiSelect;
|
|
@@ -344,11 +344,6 @@ export class AuroSelect extends AuroElement {
|
|
|
344
344
|
* @returns {void}
|
|
345
345
|
*/
|
|
346
346
|
private updateDisplayedValue;
|
|
347
|
-
/**
|
|
348
|
-
* Update menu to default for fullscreen bib, otherwise to this.size and this.shape.
|
|
349
|
-
* @private
|
|
350
|
-
*/
|
|
351
|
-
private updateMenuShapeSize;
|
|
352
347
|
/**
|
|
353
348
|
* Binds all behavior needed to the menu after rendering.
|
|
354
349
|
* @private
|
|
@@ -5358,7 +5358,7 @@ var dropdownVersion = '3.0.0';
|
|
|
5358
5358
|
|
|
5359
5359
|
var colorCss$3 = css`#headerContainer{box-shadow:var(--ds-auro-dropdownbib-header-boxshadow-color)}#footerContainer{background-color:var(--ds-auro-dropdownbib-footer-container-color)}`;
|
|
5360
5360
|
|
|
5361
|
-
var styleCss$4 = css`#bibTemplate{display:flex;overflow:hidden;height:100%;max-height:100%;flex-direction:column}#headerContainer{display:flex;flex-direction:column;
|
|
5361
|
+
var styleCss$4 = css`#bibTemplate{display:flex;overflow:hidden;height:100%;max-height:100%;flex-direction:column}#headerContainer{display:flex;flex-direction:column}#header{display:flex;width:100%;min-height:var(--ds-size-1000, 5rem);box-sizing:border-box;align-items:end;padding-top:var(--ds-size-400, 2rem);padding-right:var(--ds-size-700, 3.5rem);padding-left:var(--ds-size-200, 1rem);pointer-events:none}#subheader{width:100%}#subheader ::slotted([auro-input]){box-sizing:border-box;padding:0 var(--ds-size-200, 1rem)}#closeButton{position:absolute;top:var(--ds-size-400, 2rem);right:var(--ds-size-200, 1rem);border:none;background-color:transparent;cursor:pointer}#bodyContainer{position:relative;overflow:auto;flex:1 1 100%}:host([isfullscreen]) #bibTemplate{max-height:100dvh}:host([isfullscreen]) #bodyContainer{margin-top:var(--ds-size-100, 0.5rem)}#footerContainer{position:absolute;right:0;bottom:0;left:0;padding:var(--ds-size-200, 1rem)}`;
|
|
5362
5362
|
|
|
5363
5363
|
var tokenCss = css`:host{--ds-auro-dropdownbib-header-boxshadow-color: var(--ds-elevation-200, 0px 0px 10px rgba(0, 0, 0, 0.15));--ds-auro-dropdownbib-footer-container-color: var(--ds-basic-color-surface-default, #ffffff)}`;
|
|
5364
5364
|
|
|
@@ -7262,15 +7262,13 @@ class AuroBibtemplate extends LitElement {
|
|
|
7262
7262
|
<div id="bibTemplate" part="bibtemplate">
|
|
7263
7263
|
${this.isFullscreen ? html`
|
|
7264
7264
|
<div id="headerContainer">
|
|
7265
|
-
|
|
7266
|
-
<${this.
|
|
7267
|
-
|
|
7268
|
-
|
|
7269
|
-
|
|
7270
|
-
|
|
7271
|
-
|
|
7272
|
-
</div>
|
|
7273
|
-
<span class="subheader">
|
|
7265
|
+
<${this.buttonTag} id="closeButton" aria-label="Close" variant="ghost" shape="circle" size="sm" @click="${this.onCloseButtonClick}">
|
|
7266
|
+
<${this.iconTag} category="interface" name="x-lg"></${this.iconTag}>
|
|
7267
|
+
</${this.buttonTag}>
|
|
7268
|
+
<${this.headerTag} display="${this.large ? 'display' : '600'}" level="3" size="none" id="header" no-margin-block>
|
|
7269
|
+
<slot name="header"></slot>
|
|
7270
|
+
</${this.headerTag}>
|
|
7271
|
+
<span id="subheader">
|
|
7274
7272
|
<slot name="subheader"></slot>
|
|
7275
7273
|
</span>
|
|
7276
7274
|
</div>` : null}
|
|
@@ -7972,7 +7970,6 @@ class AuroSelect extends AuroElement$3 {
|
|
|
7972
7970
|
this.isPopoverVisible = this.dropdown.isPopoverVisible;
|
|
7973
7971
|
|
|
7974
7972
|
if (this.dropdown.isPopoverVisible) {
|
|
7975
|
-
this.updateMenuShapeSize();
|
|
7976
7973
|
// wait til the bib gets fully rendered
|
|
7977
7974
|
setTimeout(() => {
|
|
7978
7975
|
if (this.dropdown.isBibFullscreen) {
|
|
@@ -7988,10 +7985,6 @@ class AuroSelect extends AuroElement$3 {
|
|
|
7988
7985
|
}
|
|
7989
7986
|
});
|
|
7990
7987
|
|
|
7991
|
-
this.dropdown.addEventListener('auroDropdown-strategy-change', () => {
|
|
7992
|
-
this.updateMenuShapeSize();
|
|
7993
|
-
});
|
|
7994
|
-
|
|
7995
7988
|
// setting up bibtemplate
|
|
7996
7989
|
this.bibtemplate = this.dropdown.querySelector(this.bibtemplateTag._$litStatic$);
|
|
7997
7990
|
|
|
@@ -8056,30 +8049,6 @@ class AuroSelect extends AuroElement$3 {
|
|
|
8056
8049
|
this.dropdown.requestUpdate();
|
|
8057
8050
|
}
|
|
8058
8051
|
|
|
8059
|
-
/**
|
|
8060
|
-
* Update menu to default for fullscreen bib, otherwise to this.size and this.shape.
|
|
8061
|
-
* @private
|
|
8062
|
-
*/
|
|
8063
|
-
updateMenuShapeSize() {
|
|
8064
|
-
if (!this.menu) {
|
|
8065
|
-
return;
|
|
8066
|
-
}
|
|
8067
|
-
|
|
8068
|
-
if (this.dropdown && this.dropdown.isBibFullscreen) {
|
|
8069
|
-
this.menu.setAttribute('size', 'md');
|
|
8070
|
-
this.menu.setAttribute('shape', 'box');
|
|
8071
|
-
} else {
|
|
8072
|
-
// set menu's default size if there it's not specified.
|
|
8073
|
-
if (!this.menu.getAttribute('size')) {
|
|
8074
|
-
this.menu.setAttribute('size', this.layout !== 'emphasized' ? 'md' : this.size);
|
|
8075
|
-
}
|
|
8076
|
-
|
|
8077
|
-
if (!this.getAttribute('shape')) {
|
|
8078
|
-
this.menu.setAttribute('shape', this.layout === 'classic' ? 'box' : this.shape);
|
|
8079
|
-
}
|
|
8080
|
-
}
|
|
8081
|
-
}
|
|
8082
|
-
|
|
8083
8052
|
/**
|
|
8084
8053
|
* Binds all behavior needed to the menu after rendering.
|
|
8085
8054
|
* @private
|
|
@@ -8096,7 +8065,14 @@ class AuroSelect extends AuroElement$3 {
|
|
|
8096
8065
|
return;
|
|
8097
8066
|
}
|
|
8098
8067
|
|
|
8099
|
-
|
|
8068
|
+
// set menu's default size if there it's not specified.
|
|
8069
|
+
if (!this.menu.getAttribute('size')) {
|
|
8070
|
+
this.menu.setAttribute('size', this.layout !== 'emphasized' ? 'md' : this.size);
|
|
8071
|
+
}
|
|
8072
|
+
|
|
8073
|
+
if (!this.getAttribute('shape')) {
|
|
8074
|
+
this.menu.setAttribute('shape', this.layout === 'classic' ? 'box' : this.shape);
|
|
8075
|
+
}
|
|
8100
8076
|
|
|
8101
8077
|
if (this.multiSelect) {
|
|
8102
8078
|
this.menu.multiSelect = this.multiSelect;
|