@aurodesignsystem-dev/auro-formkit 0.0.0-pr1095.0 → 0.0.0-pr1095.1
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/combobox/demo/api.min.js +5 -27
- package/components/combobox/demo/index.min.js +5 -27
- package/components/combobox/dist/index.js +5 -27
- package/components/combobox/dist/registered.js +5 -27
- package/components/counter/demo/api.min.js +1 -1
- package/components/counter/demo/index.min.js +1 -1
- package/components/counter/dist/index.js +1 -1
- package/components/counter/dist/registered.js +1 -1
- package/components/datepicker/demo/api.min.js +1 -1
- package/components/datepicker/demo/index.min.js +1 -1
- package/components/datepicker/dist/index.js +1 -1
- package/components/datepicker/dist/registered.js +1 -1
- package/components/dropdown/demo/api.min.js +1 -1
- package/components/dropdown/demo/index.min.js +1 -1
- package/components/dropdown/dist/index.js +1 -1
- package/components/dropdown/dist/registered.js +1 -1
- package/components/select/demo/api.min.js +5 -25
- package/components/select/demo/index.min.js +5 -25
- package/components/select/dist/index.js +5 -25
- package/components/select/dist/registered.js +5 -25
- package/package.json +1 -1
|
@@ -4119,7 +4119,7 @@ let AuroIcon$3 = class AuroIcon extends BaseIcon$3 {
|
|
|
4119
4119
|
|
|
4120
4120
|
var iconVersion$3 = '8.1.2';
|
|
4121
4121
|
|
|
4122
|
-
var styleCss$2$3 = i$5`:host{position:fixed;z-index:var(--depth-tooltip, 400);display:none;isolation:isolate}:host(:not([matchWidth])) .container{min-width:fit-content}:host([isfullscreen]){position:fixed;top:0;left:0}:host([isfullscreen]) .container{width:100dvw;max-width:none;height:100dvh;max-height:none;border-radius:unset;margin-top:0;box-shadow:unset;overscroll-behavior:contain}:host([data-show]){display:flex}:host([common]:not([isfullscreen])) .container,:host([rounded]:not([isfullscreen])) .container{border-radius:var(--ds-border-radius, 0.375rem)}:host([common][isfullscreen]) .container,:host([rounded][isfullscreen]) .container{border-radius:unset;box-shadow:unset}:host(:not([isfullscreen])) .container.shape-box{border-radius:unset}:host(:not([isfullscreen])) .container[class*=shape-pill]
|
|
4122
|
+
var styleCss$2$3 = i$5`:host{position:fixed;z-index:var(--depth-tooltip, 400);display:none;isolation:isolate}:host(:not([matchWidth])) .container{min-width:fit-content}:host([isfullscreen]){position:fixed;top:0;left:0}:host([isfullscreen]) .container{width:100dvw;max-width:none;height:100dvh;max-height:none;border-radius:unset;margin-top:0;box-shadow:unset;overscroll-behavior:contain}:host([data-show]){display:flex}:host([common]:not([isfullscreen])) .container,:host([rounded]:not([isfullscreen])) .container{border-radius:var(--ds-border-radius, 0.375rem)}:host([common][isfullscreen]) .container,:host([rounded][isfullscreen]) .container{border-radius:unset;box-shadow:unset}:host(:not([isfullscreen])) .container.shape-box{border-radius:unset}:host(:not([isfullscreen])) .container[class*=shape-pill],:host(:not([isfullscreen])) .container[class*=shape-snowflake]{border-radius:30px}.container{display:inline-block;overflow:auto;box-sizing:border-box;border-radius:var(--ds-border-radius, 0.375rem);margin:var(--ds-size-50, 0.25rem) 0}`;
|
|
4123
4123
|
|
|
4124
4124
|
var colorCss$2$3 = i$5`.container{background-color:var(--ds-auro-dropdownbib-container-color);box-shadow:var(--ds-auro-dropdownbib-boxshadow-color);color:var(--ds-auro-dropdownbib-text-color)}`;
|
|
4125
4125
|
|
|
@@ -16956,24 +16956,13 @@ class AuroCombobox extends AuroElement$1 {
|
|
|
16956
16956
|
this.menu.setAttribute('size', 'md');
|
|
16957
16957
|
this.menu.setAttribute('shape', 'box');
|
|
16958
16958
|
} else {
|
|
16959
|
-
|
|
16960
16959
|
// set menu's default size if there it's not specified.
|
|
16961
16960
|
if (!this.menu.getAttribute('size')) {
|
|
16962
|
-
this.menu.setAttribute('size', this.layout
|
|
16961
|
+
this.menu.setAttribute('size', this.layout !== 'emphasized' ? 'md' : this.size);
|
|
16963
16962
|
}
|
|
16964
16963
|
|
|
16965
16964
|
if (!this.menu.getAttribute('shape')) {
|
|
16966
|
-
|
|
16967
|
-
case 'classic':
|
|
16968
|
-
this.menu.setAttribute('shape', 'box');
|
|
16969
|
-
break;
|
|
16970
|
-
case 'snowflake':
|
|
16971
|
-
this.menu.setAttribute('shape', 'pill');
|
|
16972
|
-
break;
|
|
16973
|
-
default:
|
|
16974
|
-
this.menu.setAttribute('shape', this.shape);
|
|
16975
|
-
break;
|
|
16976
|
-
}
|
|
16965
|
+
this.menu.setAttribute('shape', this.layout === 'classic' ? 'box' : this.shape);
|
|
16977
16966
|
}
|
|
16978
16967
|
}
|
|
16979
16968
|
}
|
|
@@ -17354,23 +17343,12 @@ class AuroCombobox extends AuroElement$1 {
|
|
|
17354
17343
|
}
|
|
17355
17344
|
|
|
17356
17345
|
if (changedProperties.has('shape') && this.menu) {
|
|
17357
|
-
|
|
17358
|
-
case 'classic':
|
|
17359
|
-
this.menu.setAttribute('shape', 'box');
|
|
17360
|
-
break;
|
|
17361
|
-
case 'snowflake':
|
|
17362
|
-
this.menu.setAttribute('shape', 'pill');
|
|
17363
|
-
break;
|
|
17364
|
-
default:
|
|
17365
|
-
this.menu.setAttribute('shape', this.shape);
|
|
17366
|
-
break;
|
|
17367
|
-
}
|
|
17346
|
+
this.menu.setAttribute('shape', this.layout === 'classic' ? 'box' : this.shape);
|
|
17368
17347
|
}
|
|
17369
17348
|
|
|
17370
17349
|
if (changedProperties.has('size') && this.menu) {
|
|
17371
|
-
this.menu.setAttribute('size', this.layout
|
|
17350
|
+
this.menu.setAttribute('size', this.layout !== 'emphasized' ? 'md' : this.size);
|
|
17372
17351
|
}
|
|
17373
|
-
|
|
17374
17352
|
}
|
|
17375
17353
|
|
|
17376
17354
|
/**
|
|
@@ -3921,7 +3921,7 @@ let AuroIcon$3 = class AuroIcon extends BaseIcon$3 {
|
|
|
3921
3921
|
|
|
3922
3922
|
var iconVersion$3 = '8.1.2';
|
|
3923
3923
|
|
|
3924
|
-
var styleCss$2$3 = i$5`:host{position:fixed;z-index:var(--depth-tooltip, 400);display:none;isolation:isolate}:host(:not([matchWidth])) .container{min-width:fit-content}:host([isfullscreen]){position:fixed;top:0;left:0}:host([isfullscreen]) .container{width:100dvw;max-width:none;height:100dvh;max-height:none;border-radius:unset;margin-top:0;box-shadow:unset;overscroll-behavior:contain}:host([data-show]){display:flex}:host([common]:not([isfullscreen])) .container,:host([rounded]:not([isfullscreen])) .container{border-radius:var(--ds-border-radius, 0.375rem)}:host([common][isfullscreen]) .container,:host([rounded][isfullscreen]) .container{border-radius:unset;box-shadow:unset}:host(:not([isfullscreen])) .container.shape-box{border-radius:unset}:host(:not([isfullscreen])) .container[class*=shape-pill]
|
|
3924
|
+
var styleCss$2$3 = i$5`:host{position:fixed;z-index:var(--depth-tooltip, 400);display:none;isolation:isolate}:host(:not([matchWidth])) .container{min-width:fit-content}:host([isfullscreen]){position:fixed;top:0;left:0}:host([isfullscreen]) .container{width:100dvw;max-width:none;height:100dvh;max-height:none;border-radius:unset;margin-top:0;box-shadow:unset;overscroll-behavior:contain}:host([data-show]){display:flex}:host([common]:not([isfullscreen])) .container,:host([rounded]:not([isfullscreen])) .container{border-radius:var(--ds-border-radius, 0.375rem)}:host([common][isfullscreen]) .container,:host([rounded][isfullscreen]) .container{border-radius:unset;box-shadow:unset}:host(:not([isfullscreen])) .container.shape-box{border-radius:unset}:host(:not([isfullscreen])) .container[class*=shape-pill],:host(:not([isfullscreen])) .container[class*=shape-snowflake]{border-radius:30px}.container{display:inline-block;overflow:auto;box-sizing:border-box;border-radius:var(--ds-border-radius, 0.375rem);margin:var(--ds-size-50, 0.25rem) 0}`;
|
|
3925
3925
|
|
|
3926
3926
|
var colorCss$2$3 = i$5`.container{background-color:var(--ds-auro-dropdownbib-container-color);box-shadow:var(--ds-auro-dropdownbib-boxshadow-color);color:var(--ds-auro-dropdownbib-text-color)}`;
|
|
3927
3927
|
|
|
@@ -16758,24 +16758,13 @@ class AuroCombobox extends AuroElement$1 {
|
|
|
16758
16758
|
this.menu.setAttribute('size', 'md');
|
|
16759
16759
|
this.menu.setAttribute('shape', 'box');
|
|
16760
16760
|
} else {
|
|
16761
|
-
|
|
16762
16761
|
// set menu's default size if there it's not specified.
|
|
16763
16762
|
if (!this.menu.getAttribute('size')) {
|
|
16764
|
-
this.menu.setAttribute('size', this.layout
|
|
16763
|
+
this.menu.setAttribute('size', this.layout !== 'emphasized' ? 'md' : this.size);
|
|
16765
16764
|
}
|
|
16766
16765
|
|
|
16767
16766
|
if (!this.menu.getAttribute('shape')) {
|
|
16768
|
-
|
|
16769
|
-
case 'classic':
|
|
16770
|
-
this.menu.setAttribute('shape', 'box');
|
|
16771
|
-
break;
|
|
16772
|
-
case 'snowflake':
|
|
16773
|
-
this.menu.setAttribute('shape', 'pill');
|
|
16774
|
-
break;
|
|
16775
|
-
default:
|
|
16776
|
-
this.menu.setAttribute('shape', this.shape);
|
|
16777
|
-
break;
|
|
16778
|
-
}
|
|
16767
|
+
this.menu.setAttribute('shape', this.layout === 'classic' ? 'box' : this.shape);
|
|
16779
16768
|
}
|
|
16780
16769
|
}
|
|
16781
16770
|
}
|
|
@@ -17156,23 +17145,12 @@ class AuroCombobox extends AuroElement$1 {
|
|
|
17156
17145
|
}
|
|
17157
17146
|
|
|
17158
17147
|
if (changedProperties.has('shape') && this.menu) {
|
|
17159
|
-
|
|
17160
|
-
case 'classic':
|
|
17161
|
-
this.menu.setAttribute('shape', 'box');
|
|
17162
|
-
break;
|
|
17163
|
-
case 'snowflake':
|
|
17164
|
-
this.menu.setAttribute('shape', 'pill');
|
|
17165
|
-
break;
|
|
17166
|
-
default:
|
|
17167
|
-
this.menu.setAttribute('shape', this.shape);
|
|
17168
|
-
break;
|
|
17169
|
-
}
|
|
17148
|
+
this.menu.setAttribute('shape', this.layout === 'classic' ? 'box' : this.shape);
|
|
17170
17149
|
}
|
|
17171
17150
|
|
|
17172
17151
|
if (changedProperties.has('size') && this.menu) {
|
|
17173
|
-
this.menu.setAttribute('size', this.layout
|
|
17152
|
+
this.menu.setAttribute('size', this.layout !== 'emphasized' ? 'md' : this.size);
|
|
17174
17153
|
}
|
|
17175
|
-
|
|
17176
17154
|
}
|
|
17177
17155
|
|
|
17178
17156
|
/**
|
|
@@ -3852,7 +3852,7 @@ let AuroIcon$2 = class AuroIcon extends BaseIcon$2 {
|
|
|
3852
3852
|
|
|
3853
3853
|
var iconVersion$2 = '8.1.2';
|
|
3854
3854
|
|
|
3855
|
-
var styleCss$2$2 = css`:host{position:fixed;z-index:var(--depth-tooltip, 400);display:none;isolation:isolate}:host(:not([matchWidth])) .container{min-width:fit-content}:host([isfullscreen]){position:fixed;top:0;left:0}:host([isfullscreen]) .container{width:100dvw;max-width:none;height:100dvh;max-height:none;border-radius:unset;margin-top:0;box-shadow:unset;overscroll-behavior:contain}:host([data-show]){display:flex}:host([common]:not([isfullscreen])) .container,:host([rounded]:not([isfullscreen])) .container{border-radius:var(--ds-border-radius, 0.375rem)}:host([common][isfullscreen]) .container,:host([rounded][isfullscreen]) .container{border-radius:unset;box-shadow:unset}:host(:not([isfullscreen])) .container.shape-box{border-radius:unset}:host(:not([isfullscreen])) .container[class*=shape-pill]
|
|
3855
|
+
var styleCss$2$2 = css`:host{position:fixed;z-index:var(--depth-tooltip, 400);display:none;isolation:isolate}:host(:not([matchWidth])) .container{min-width:fit-content}:host([isfullscreen]){position:fixed;top:0;left:0}:host([isfullscreen]) .container{width:100dvw;max-width:none;height:100dvh;max-height:none;border-radius:unset;margin-top:0;box-shadow:unset;overscroll-behavior:contain}:host([data-show]){display:flex}:host([common]:not([isfullscreen])) .container,:host([rounded]:not([isfullscreen])) .container{border-radius:var(--ds-border-radius, 0.375rem)}:host([common][isfullscreen]) .container,:host([rounded][isfullscreen]) .container{border-radius:unset;box-shadow:unset}:host(:not([isfullscreen])) .container.shape-box{border-radius:unset}:host(:not([isfullscreen])) .container[class*=shape-pill],:host(:not([isfullscreen])) .container[class*=shape-snowflake]{border-radius:30px}.container{display:inline-block;overflow:auto;box-sizing:border-box;border-radius:var(--ds-border-radius, 0.375rem);margin:var(--ds-size-50, 0.25rem) 0}`;
|
|
3856
3856
|
|
|
3857
3857
|
var colorCss$2$2 = css`.container{background-color:var(--ds-auro-dropdownbib-container-color);box-shadow:var(--ds-auro-dropdownbib-boxshadow-color);color:var(--ds-auro-dropdownbib-text-color)}`;
|
|
3858
3858
|
|
|
@@ -16676,24 +16676,13 @@ class AuroCombobox extends AuroElement {
|
|
|
16676
16676
|
this.menu.setAttribute('size', 'md');
|
|
16677
16677
|
this.menu.setAttribute('shape', 'box');
|
|
16678
16678
|
} else {
|
|
16679
|
-
|
|
16680
16679
|
// set menu's default size if there it's not specified.
|
|
16681
16680
|
if (!this.menu.getAttribute('size')) {
|
|
16682
|
-
this.menu.setAttribute('size', this.layout
|
|
16681
|
+
this.menu.setAttribute('size', this.layout !== 'emphasized' ? 'md' : this.size);
|
|
16683
16682
|
}
|
|
16684
16683
|
|
|
16685
16684
|
if (!this.menu.getAttribute('shape')) {
|
|
16686
|
-
|
|
16687
|
-
case 'classic':
|
|
16688
|
-
this.menu.setAttribute('shape', 'box');
|
|
16689
|
-
break;
|
|
16690
|
-
case 'snowflake':
|
|
16691
|
-
this.menu.setAttribute('shape', 'pill');
|
|
16692
|
-
break;
|
|
16693
|
-
default:
|
|
16694
|
-
this.menu.setAttribute('shape', this.shape);
|
|
16695
|
-
break;
|
|
16696
|
-
}
|
|
16685
|
+
this.menu.setAttribute('shape', this.layout === 'classic' ? 'box' : this.shape);
|
|
16697
16686
|
}
|
|
16698
16687
|
}
|
|
16699
16688
|
}
|
|
@@ -17074,23 +17063,12 @@ class AuroCombobox extends AuroElement {
|
|
|
17074
17063
|
}
|
|
17075
17064
|
|
|
17076
17065
|
if (changedProperties.has('shape') && this.menu) {
|
|
17077
|
-
|
|
17078
|
-
case 'classic':
|
|
17079
|
-
this.menu.setAttribute('shape', 'box');
|
|
17080
|
-
break;
|
|
17081
|
-
case 'snowflake':
|
|
17082
|
-
this.menu.setAttribute('shape', 'pill');
|
|
17083
|
-
break;
|
|
17084
|
-
default:
|
|
17085
|
-
this.menu.setAttribute('shape', this.shape);
|
|
17086
|
-
break;
|
|
17087
|
-
}
|
|
17066
|
+
this.menu.setAttribute('shape', this.layout === 'classic' ? 'box' : this.shape);
|
|
17088
17067
|
}
|
|
17089
17068
|
|
|
17090
17069
|
if (changedProperties.has('size') && this.menu) {
|
|
17091
|
-
this.menu.setAttribute('size', this.layout
|
|
17070
|
+
this.menu.setAttribute('size', this.layout !== 'emphasized' ? 'md' : this.size);
|
|
17092
17071
|
}
|
|
17093
|
-
|
|
17094
17072
|
}
|
|
17095
17073
|
|
|
17096
17074
|
/**
|
|
@@ -3852,7 +3852,7 @@ let AuroIcon$2 = class AuroIcon extends BaseIcon$2 {
|
|
|
3852
3852
|
|
|
3853
3853
|
var iconVersion$2 = '8.1.2';
|
|
3854
3854
|
|
|
3855
|
-
var styleCss$2$2 = css`:host{position:fixed;z-index:var(--depth-tooltip, 400);display:none;isolation:isolate}:host(:not([matchWidth])) .container{min-width:fit-content}:host([isfullscreen]){position:fixed;top:0;left:0}:host([isfullscreen]) .container{width:100dvw;max-width:none;height:100dvh;max-height:none;border-radius:unset;margin-top:0;box-shadow:unset;overscroll-behavior:contain}:host([data-show]){display:flex}:host([common]:not([isfullscreen])) .container,:host([rounded]:not([isfullscreen])) .container{border-radius:var(--ds-border-radius, 0.375rem)}:host([common][isfullscreen]) .container,:host([rounded][isfullscreen]) .container{border-radius:unset;box-shadow:unset}:host(:not([isfullscreen])) .container.shape-box{border-radius:unset}:host(:not([isfullscreen])) .container[class*=shape-pill]
|
|
3855
|
+
var styleCss$2$2 = css`:host{position:fixed;z-index:var(--depth-tooltip, 400);display:none;isolation:isolate}:host(:not([matchWidth])) .container{min-width:fit-content}:host([isfullscreen]){position:fixed;top:0;left:0}:host([isfullscreen]) .container{width:100dvw;max-width:none;height:100dvh;max-height:none;border-radius:unset;margin-top:0;box-shadow:unset;overscroll-behavior:contain}:host([data-show]){display:flex}:host([common]:not([isfullscreen])) .container,:host([rounded]:not([isfullscreen])) .container{border-radius:var(--ds-border-radius, 0.375rem)}:host([common][isfullscreen]) .container,:host([rounded][isfullscreen]) .container{border-radius:unset;box-shadow:unset}:host(:not([isfullscreen])) .container.shape-box{border-radius:unset}:host(:not([isfullscreen])) .container[class*=shape-pill],:host(:not([isfullscreen])) .container[class*=shape-snowflake]{border-radius:30px}.container{display:inline-block;overflow:auto;box-sizing:border-box;border-radius:var(--ds-border-radius, 0.375rem);margin:var(--ds-size-50, 0.25rem) 0}`;
|
|
3856
3856
|
|
|
3857
3857
|
var colorCss$2$2 = css`.container{background-color:var(--ds-auro-dropdownbib-container-color);box-shadow:var(--ds-auro-dropdownbib-boxshadow-color);color:var(--ds-auro-dropdownbib-text-color)}`;
|
|
3858
3858
|
|
|
@@ -16676,24 +16676,13 @@ class AuroCombobox extends AuroElement {
|
|
|
16676
16676
|
this.menu.setAttribute('size', 'md');
|
|
16677
16677
|
this.menu.setAttribute('shape', 'box');
|
|
16678
16678
|
} else {
|
|
16679
|
-
|
|
16680
16679
|
// set menu's default size if there it's not specified.
|
|
16681
16680
|
if (!this.menu.getAttribute('size')) {
|
|
16682
|
-
this.menu.setAttribute('size', this.layout
|
|
16681
|
+
this.menu.setAttribute('size', this.layout !== 'emphasized' ? 'md' : this.size);
|
|
16683
16682
|
}
|
|
16684
16683
|
|
|
16685
16684
|
if (!this.menu.getAttribute('shape')) {
|
|
16686
|
-
|
|
16687
|
-
case 'classic':
|
|
16688
|
-
this.menu.setAttribute('shape', 'box');
|
|
16689
|
-
break;
|
|
16690
|
-
case 'snowflake':
|
|
16691
|
-
this.menu.setAttribute('shape', 'pill');
|
|
16692
|
-
break;
|
|
16693
|
-
default:
|
|
16694
|
-
this.menu.setAttribute('shape', this.shape);
|
|
16695
|
-
break;
|
|
16696
|
-
}
|
|
16685
|
+
this.menu.setAttribute('shape', this.layout === 'classic' ? 'box' : this.shape);
|
|
16697
16686
|
}
|
|
16698
16687
|
}
|
|
16699
16688
|
}
|
|
@@ -17074,23 +17063,12 @@ class AuroCombobox extends AuroElement {
|
|
|
17074
17063
|
}
|
|
17075
17064
|
|
|
17076
17065
|
if (changedProperties.has('shape') && this.menu) {
|
|
17077
|
-
|
|
17078
|
-
case 'classic':
|
|
17079
|
-
this.menu.setAttribute('shape', 'box');
|
|
17080
|
-
break;
|
|
17081
|
-
case 'snowflake':
|
|
17082
|
-
this.menu.setAttribute('shape', 'pill');
|
|
17083
|
-
break;
|
|
17084
|
-
default:
|
|
17085
|
-
this.menu.setAttribute('shape', this.shape);
|
|
17086
|
-
break;
|
|
17087
|
-
}
|
|
17066
|
+
this.menu.setAttribute('shape', this.layout === 'classic' ? 'box' : this.shape);
|
|
17088
17067
|
}
|
|
17089
17068
|
|
|
17090
17069
|
if (changedProperties.has('size') && this.menu) {
|
|
17091
|
-
this.menu.setAttribute('size', this.layout
|
|
17070
|
+
this.menu.setAttribute('size', this.layout !== 'emphasized' ? 'md' : this.size);
|
|
17092
17071
|
}
|
|
17093
|
-
|
|
17094
17072
|
}
|
|
17095
17073
|
|
|
17096
17074
|
/**
|
|
@@ -6095,7 +6095,7 @@ let AuroIcon$1 = class AuroIcon extends BaseIcon$1 {
|
|
|
6095
6095
|
|
|
6096
6096
|
var iconVersion$1 = '8.1.2';
|
|
6097
6097
|
|
|
6098
|
-
var styleCss$2$1 = i$5`:host{position:fixed;z-index:var(--depth-tooltip, 400);display:none;isolation:isolate}:host(:not([matchWidth])) .container{min-width:fit-content}:host([isfullscreen]){position:fixed;top:0;left:0}:host([isfullscreen]) .container{width:100dvw;max-width:none;height:100dvh;max-height:none;border-radius:unset;margin-top:0;box-shadow:unset;overscroll-behavior:contain}:host([data-show]){display:flex}:host([common]:not([isfullscreen])) .container,:host([rounded]:not([isfullscreen])) .container{border-radius:var(--ds-border-radius, 0.375rem)}:host([common][isfullscreen]) .container,:host([rounded][isfullscreen]) .container{border-radius:unset;box-shadow:unset}:host(:not([isfullscreen])) .container.shape-box{border-radius:unset}:host(:not([isfullscreen])) .container[class*=shape-pill]
|
|
6098
|
+
var styleCss$2$1 = i$5`:host{position:fixed;z-index:var(--depth-tooltip, 400);display:none;isolation:isolate}:host(:not([matchWidth])) .container{min-width:fit-content}:host([isfullscreen]){position:fixed;top:0;left:0}:host([isfullscreen]) .container{width:100dvw;max-width:none;height:100dvh;max-height:none;border-radius:unset;margin-top:0;box-shadow:unset;overscroll-behavior:contain}:host([data-show]){display:flex}:host([common]:not([isfullscreen])) .container,:host([rounded]:not([isfullscreen])) .container{border-radius:var(--ds-border-radius, 0.375rem)}:host([common][isfullscreen]) .container,:host([rounded][isfullscreen]) .container{border-radius:unset;box-shadow:unset}:host(:not([isfullscreen])) .container.shape-box{border-radius:unset}:host(:not([isfullscreen])) .container[class*=shape-pill],:host(:not([isfullscreen])) .container[class*=shape-snowflake]{border-radius:30px}.container{display:inline-block;overflow:auto;box-sizing:border-box;border-radius:var(--ds-border-radius, 0.375rem);margin:var(--ds-size-50, 0.25rem) 0}`;
|
|
6099
6099
|
|
|
6100
6100
|
var colorCss$2$1 = i$5`.container{background-color:var(--ds-auro-dropdownbib-container-color);box-shadow:var(--ds-auro-dropdownbib-boxshadow-color);color:var(--ds-auro-dropdownbib-text-color)}`;
|
|
6101
6101
|
|
|
@@ -6095,7 +6095,7 @@ let AuroIcon$1 = class AuroIcon extends BaseIcon$1 {
|
|
|
6095
6095
|
|
|
6096
6096
|
var iconVersion$1 = '8.1.2';
|
|
6097
6097
|
|
|
6098
|
-
var styleCss$2$1 = i$5`:host{position:fixed;z-index:var(--depth-tooltip, 400);display:none;isolation:isolate}:host(:not([matchWidth])) .container{min-width:fit-content}:host([isfullscreen]){position:fixed;top:0;left:0}:host([isfullscreen]) .container{width:100dvw;max-width:none;height:100dvh;max-height:none;border-radius:unset;margin-top:0;box-shadow:unset;overscroll-behavior:contain}:host([data-show]){display:flex}:host([common]:not([isfullscreen])) .container,:host([rounded]:not([isfullscreen])) .container{border-radius:var(--ds-border-radius, 0.375rem)}:host([common][isfullscreen]) .container,:host([rounded][isfullscreen]) .container{border-radius:unset;box-shadow:unset}:host(:not([isfullscreen])) .container.shape-box{border-radius:unset}:host(:not([isfullscreen])) .container[class*=shape-pill]
|
|
6098
|
+
var styleCss$2$1 = i$5`:host{position:fixed;z-index:var(--depth-tooltip, 400);display:none;isolation:isolate}:host(:not([matchWidth])) .container{min-width:fit-content}:host([isfullscreen]){position:fixed;top:0;left:0}:host([isfullscreen]) .container{width:100dvw;max-width:none;height:100dvh;max-height:none;border-radius:unset;margin-top:0;box-shadow:unset;overscroll-behavior:contain}:host([data-show]){display:flex}:host([common]:not([isfullscreen])) .container,:host([rounded]:not([isfullscreen])) .container{border-radius:var(--ds-border-radius, 0.375rem)}:host([common][isfullscreen]) .container,:host([rounded][isfullscreen]) .container{border-radius:unset;box-shadow:unset}:host(:not([isfullscreen])) .container.shape-box{border-radius:unset}:host(:not([isfullscreen])) .container[class*=shape-pill],:host(:not([isfullscreen])) .container[class*=shape-snowflake]{border-radius:30px}.container{display:inline-block;overflow:auto;box-sizing:border-box;border-radius:var(--ds-border-radius, 0.375rem);margin:var(--ds-size-50, 0.25rem) 0}`;
|
|
6099
6099
|
|
|
6100
6100
|
var colorCss$2$1 = i$5`.container{background-color:var(--ds-auro-dropdownbib-container-color);box-shadow:var(--ds-auro-dropdownbib-boxshadow-color);color:var(--ds-auro-dropdownbib-text-color)}`;
|
|
6101
6101
|
|
|
@@ -6048,7 +6048,7 @@ let AuroIcon$1 = class AuroIcon extends BaseIcon$1 {
|
|
|
6048
6048
|
|
|
6049
6049
|
var iconVersion$1 = '8.1.2';
|
|
6050
6050
|
|
|
6051
|
-
var styleCss$2$1 = css`:host{position:fixed;z-index:var(--depth-tooltip, 400);display:none;isolation:isolate}:host(:not([matchWidth])) .container{min-width:fit-content}:host([isfullscreen]){position:fixed;top:0;left:0}:host([isfullscreen]) .container{width:100dvw;max-width:none;height:100dvh;max-height:none;border-radius:unset;margin-top:0;box-shadow:unset;overscroll-behavior:contain}:host([data-show]){display:flex}:host([common]:not([isfullscreen])) .container,:host([rounded]:not([isfullscreen])) .container{border-radius:var(--ds-border-radius, 0.375rem)}:host([common][isfullscreen]) .container,:host([rounded][isfullscreen]) .container{border-radius:unset;box-shadow:unset}:host(:not([isfullscreen])) .container.shape-box{border-radius:unset}:host(:not([isfullscreen])) .container[class*=shape-pill]
|
|
6051
|
+
var styleCss$2$1 = css`:host{position:fixed;z-index:var(--depth-tooltip, 400);display:none;isolation:isolate}:host(:not([matchWidth])) .container{min-width:fit-content}:host([isfullscreen]){position:fixed;top:0;left:0}:host([isfullscreen]) .container{width:100dvw;max-width:none;height:100dvh;max-height:none;border-radius:unset;margin-top:0;box-shadow:unset;overscroll-behavior:contain}:host([data-show]){display:flex}:host([common]:not([isfullscreen])) .container,:host([rounded]:not([isfullscreen])) .container{border-radius:var(--ds-border-radius, 0.375rem)}:host([common][isfullscreen]) .container,:host([rounded][isfullscreen]) .container{border-radius:unset;box-shadow:unset}:host(:not([isfullscreen])) .container.shape-box{border-radius:unset}:host(:not([isfullscreen])) .container[class*=shape-pill],:host(:not([isfullscreen])) .container[class*=shape-snowflake]{border-radius:30px}.container{display:inline-block;overflow:auto;box-sizing:border-box;border-radius:var(--ds-border-radius, 0.375rem);margin:var(--ds-size-50, 0.25rem) 0}`;
|
|
6052
6052
|
|
|
6053
6053
|
var colorCss$2$1 = css`.container{background-color:var(--ds-auro-dropdownbib-container-color);box-shadow:var(--ds-auro-dropdownbib-boxshadow-color);color:var(--ds-auro-dropdownbib-text-color)}`;
|
|
6054
6054
|
|
|
@@ -6048,7 +6048,7 @@ let AuroIcon$1 = class AuroIcon extends BaseIcon$1 {
|
|
|
6048
6048
|
|
|
6049
6049
|
var iconVersion$1 = '8.1.2';
|
|
6050
6050
|
|
|
6051
|
-
var styleCss$2$1 = css`:host{position:fixed;z-index:var(--depth-tooltip, 400);display:none;isolation:isolate}:host(:not([matchWidth])) .container{min-width:fit-content}:host([isfullscreen]){position:fixed;top:0;left:0}:host([isfullscreen]) .container{width:100dvw;max-width:none;height:100dvh;max-height:none;border-radius:unset;margin-top:0;box-shadow:unset;overscroll-behavior:contain}:host([data-show]){display:flex}:host([common]:not([isfullscreen])) .container,:host([rounded]:not([isfullscreen])) .container{border-radius:var(--ds-border-radius, 0.375rem)}:host([common][isfullscreen]) .container,:host([rounded][isfullscreen]) .container{border-radius:unset;box-shadow:unset}:host(:not([isfullscreen])) .container.shape-box{border-radius:unset}:host(:not([isfullscreen])) .container[class*=shape-pill]
|
|
6051
|
+
var styleCss$2$1 = css`:host{position:fixed;z-index:var(--depth-tooltip, 400);display:none;isolation:isolate}:host(:not([matchWidth])) .container{min-width:fit-content}:host([isfullscreen]){position:fixed;top:0;left:0}:host([isfullscreen]) .container{width:100dvw;max-width:none;height:100dvh;max-height:none;border-radius:unset;margin-top:0;box-shadow:unset;overscroll-behavior:contain}:host([data-show]){display:flex}:host([common]:not([isfullscreen])) .container,:host([rounded]:not([isfullscreen])) .container{border-radius:var(--ds-border-radius, 0.375rem)}:host([common][isfullscreen]) .container,:host([rounded][isfullscreen]) .container{border-radius:unset;box-shadow:unset}:host(:not([isfullscreen])) .container.shape-box{border-radius:unset}:host(:not([isfullscreen])) .container[class*=shape-pill],:host(:not([isfullscreen])) .container[class*=shape-snowflake]{border-radius:30px}.container{display:inline-block;overflow:auto;box-sizing:border-box;border-radius:var(--ds-border-radius, 0.375rem);margin:var(--ds-size-50, 0.25rem) 0}`;
|
|
6052
6052
|
|
|
6053
6053
|
var colorCss$2$1 = css`.container{background-color:var(--ds-auro-dropdownbib-container-color);box-shadow:var(--ds-auro-dropdownbib-boxshadow-color);color:var(--ds-auro-dropdownbib-text-color)}`;
|
|
6054
6054
|
|
|
@@ -17527,7 +17527,7 @@ let AuroIcon$2 = class AuroIcon extends BaseIcon$2 {
|
|
|
17527
17527
|
|
|
17528
17528
|
var iconVersion$2 = '8.1.2';
|
|
17529
17529
|
|
|
17530
|
-
var styleCss$2$1 = i$2`:host{position:fixed;z-index:var(--depth-tooltip, 400);display:none;isolation:isolate}:host(:not([matchWidth])) .container{min-width:fit-content}:host([isfullscreen]){position:fixed;top:0;left:0}:host([isfullscreen]) .container{width:100dvw;max-width:none;height:100dvh;max-height:none;border-radius:unset;margin-top:0;box-shadow:unset;overscroll-behavior:contain}:host([data-show]){display:flex}:host([common]:not([isfullscreen])) .container,:host([rounded]:not([isfullscreen])) .container{border-radius:var(--ds-border-radius, 0.375rem)}:host([common][isfullscreen]) .container,:host([rounded][isfullscreen]) .container{border-radius:unset;box-shadow:unset}:host(:not([isfullscreen])) .container.shape-box{border-radius:unset}:host(:not([isfullscreen])) .container[class*=shape-pill]
|
|
17530
|
+
var styleCss$2$1 = i$2`:host{position:fixed;z-index:var(--depth-tooltip, 400);display:none;isolation:isolate}:host(:not([matchWidth])) .container{min-width:fit-content}:host([isfullscreen]){position:fixed;top:0;left:0}:host([isfullscreen]) .container{width:100dvw;max-width:none;height:100dvh;max-height:none;border-radius:unset;margin-top:0;box-shadow:unset;overscroll-behavior:contain}:host([data-show]){display:flex}:host([common]:not([isfullscreen])) .container,:host([rounded]:not([isfullscreen])) .container{border-radius:var(--ds-border-radius, 0.375rem)}:host([common][isfullscreen]) .container,:host([rounded][isfullscreen]) .container{border-radius:unset;box-shadow:unset}:host(:not([isfullscreen])) .container.shape-box{border-radius:unset}:host(:not([isfullscreen])) .container[class*=shape-pill],:host(:not([isfullscreen])) .container[class*=shape-snowflake]{border-radius:30px}.container{display:inline-block;overflow:auto;box-sizing:border-box;border-radius:var(--ds-border-radius, 0.375rem);margin:var(--ds-size-50, 0.25rem) 0}`;
|
|
17531
17531
|
|
|
17532
17532
|
var colorCss$2$1 = i$2`.container{background-color:var(--ds-auro-dropdownbib-container-color);box-shadow:var(--ds-auro-dropdownbib-boxshadow-color);color:var(--ds-auro-dropdownbib-text-color)}`;
|
|
17533
17533
|
|
|
@@ -17268,7 +17268,7 @@ let AuroIcon$2 = class AuroIcon extends BaseIcon$2 {
|
|
|
17268
17268
|
|
|
17269
17269
|
var iconVersion$2 = '8.1.2';
|
|
17270
17270
|
|
|
17271
|
-
var styleCss$2$1 = i$2`:host{position:fixed;z-index:var(--depth-tooltip, 400);display:none;isolation:isolate}:host(:not([matchWidth])) .container{min-width:fit-content}:host([isfullscreen]){position:fixed;top:0;left:0}:host([isfullscreen]) .container{width:100dvw;max-width:none;height:100dvh;max-height:none;border-radius:unset;margin-top:0;box-shadow:unset;overscroll-behavior:contain}:host([data-show]){display:flex}:host([common]:not([isfullscreen])) .container,:host([rounded]:not([isfullscreen])) .container{border-radius:var(--ds-border-radius, 0.375rem)}:host([common][isfullscreen]) .container,:host([rounded][isfullscreen]) .container{border-radius:unset;box-shadow:unset}:host(:not([isfullscreen])) .container.shape-box{border-radius:unset}:host(:not([isfullscreen])) .container[class*=shape-pill]
|
|
17271
|
+
var styleCss$2$1 = i$2`:host{position:fixed;z-index:var(--depth-tooltip, 400);display:none;isolation:isolate}:host(:not([matchWidth])) .container{min-width:fit-content}:host([isfullscreen]){position:fixed;top:0;left:0}:host([isfullscreen]) .container{width:100dvw;max-width:none;height:100dvh;max-height:none;border-radius:unset;margin-top:0;box-shadow:unset;overscroll-behavior:contain}:host([data-show]){display:flex}:host([common]:not([isfullscreen])) .container,:host([rounded]:not([isfullscreen])) .container{border-radius:var(--ds-border-radius, 0.375rem)}:host([common][isfullscreen]) .container,:host([rounded][isfullscreen]) .container{border-radius:unset;box-shadow:unset}:host(:not([isfullscreen])) .container.shape-box{border-radius:unset}:host(:not([isfullscreen])) .container[class*=shape-pill],:host(:not([isfullscreen])) .container[class*=shape-snowflake]{border-radius:30px}.container{display:inline-block;overflow:auto;box-sizing:border-box;border-radius:var(--ds-border-radius, 0.375rem);margin:var(--ds-size-50, 0.25rem) 0}`;
|
|
17272
17272
|
|
|
17273
17273
|
var colorCss$2$1 = i$2`.container{background-color:var(--ds-auro-dropdownbib-container-color);box-shadow:var(--ds-auro-dropdownbib-boxshadow-color);color:var(--ds-auro-dropdownbib-text-color)}`;
|
|
17274
17274
|
|
|
@@ -17217,7 +17217,7 @@ let AuroIcon$2 = class AuroIcon extends BaseIcon$2 {
|
|
|
17217
17217
|
|
|
17218
17218
|
var iconVersion$2 = '8.1.2';
|
|
17219
17219
|
|
|
17220
|
-
var styleCss$2$1 = css`:host{position:fixed;z-index:var(--depth-tooltip, 400);display:none;isolation:isolate}:host(:not([matchWidth])) .container{min-width:fit-content}:host([isfullscreen]){position:fixed;top:0;left:0}:host([isfullscreen]) .container{width:100dvw;max-width:none;height:100dvh;max-height:none;border-radius:unset;margin-top:0;box-shadow:unset;overscroll-behavior:contain}:host([data-show]){display:flex}:host([common]:not([isfullscreen])) .container,:host([rounded]:not([isfullscreen])) .container{border-radius:var(--ds-border-radius, 0.375rem)}:host([common][isfullscreen]) .container,:host([rounded][isfullscreen]) .container{border-radius:unset;box-shadow:unset}:host(:not([isfullscreen])) .container.shape-box{border-radius:unset}:host(:not([isfullscreen])) .container[class*=shape-pill]
|
|
17220
|
+
var styleCss$2$1 = css`:host{position:fixed;z-index:var(--depth-tooltip, 400);display:none;isolation:isolate}:host(:not([matchWidth])) .container{min-width:fit-content}:host([isfullscreen]){position:fixed;top:0;left:0}:host([isfullscreen]) .container{width:100dvw;max-width:none;height:100dvh;max-height:none;border-radius:unset;margin-top:0;box-shadow:unset;overscroll-behavior:contain}:host([data-show]){display:flex}:host([common]:not([isfullscreen])) .container,:host([rounded]:not([isfullscreen])) .container{border-radius:var(--ds-border-radius, 0.375rem)}:host([common][isfullscreen]) .container,:host([rounded][isfullscreen]) .container{border-radius:unset;box-shadow:unset}:host(:not([isfullscreen])) .container.shape-box{border-radius:unset}:host(:not([isfullscreen])) .container[class*=shape-pill],:host(:not([isfullscreen])) .container[class*=shape-snowflake]{border-radius:30px}.container{display:inline-block;overflow:auto;box-sizing:border-box;border-radius:var(--ds-border-radius, 0.375rem);margin:var(--ds-size-50, 0.25rem) 0}`;
|
|
17221
17221
|
|
|
17222
17222
|
var colorCss$2$1 = css`.container{background-color:var(--ds-auro-dropdownbib-container-color);box-shadow:var(--ds-auro-dropdownbib-boxshadow-color);color:var(--ds-auro-dropdownbib-text-color)}`;
|
|
17223
17223
|
|
|
@@ -17217,7 +17217,7 @@ let AuroIcon$2 = class AuroIcon extends BaseIcon$2 {
|
|
|
17217
17217
|
|
|
17218
17218
|
var iconVersion$2 = '8.1.2';
|
|
17219
17219
|
|
|
17220
|
-
var styleCss$2$1 = css`:host{position:fixed;z-index:var(--depth-tooltip, 400);display:none;isolation:isolate}:host(:not([matchWidth])) .container{min-width:fit-content}:host([isfullscreen]){position:fixed;top:0;left:0}:host([isfullscreen]) .container{width:100dvw;max-width:none;height:100dvh;max-height:none;border-radius:unset;margin-top:0;box-shadow:unset;overscroll-behavior:contain}:host([data-show]){display:flex}:host([common]:not([isfullscreen])) .container,:host([rounded]:not([isfullscreen])) .container{border-radius:var(--ds-border-radius, 0.375rem)}:host([common][isfullscreen]) .container,:host([rounded][isfullscreen]) .container{border-radius:unset;box-shadow:unset}:host(:not([isfullscreen])) .container.shape-box{border-radius:unset}:host(:not([isfullscreen])) .container[class*=shape-pill]
|
|
17220
|
+
var styleCss$2$1 = css`:host{position:fixed;z-index:var(--depth-tooltip, 400);display:none;isolation:isolate}:host(:not([matchWidth])) .container{min-width:fit-content}:host([isfullscreen]){position:fixed;top:0;left:0}:host([isfullscreen]) .container{width:100dvw;max-width:none;height:100dvh;max-height:none;border-radius:unset;margin-top:0;box-shadow:unset;overscroll-behavior:contain}:host([data-show]){display:flex}:host([common]:not([isfullscreen])) .container,:host([rounded]:not([isfullscreen])) .container{border-radius:var(--ds-border-radius, 0.375rem)}:host([common][isfullscreen]) .container,:host([rounded][isfullscreen]) .container{border-radius:unset;box-shadow:unset}:host(:not([isfullscreen])) .container.shape-box{border-radius:unset}:host(:not([isfullscreen])) .container[class*=shape-pill],:host(:not([isfullscreen])) .container[class*=shape-snowflake]{border-radius:30px}.container{display:inline-block;overflow:auto;box-sizing:border-box;border-radius:var(--ds-border-radius, 0.375rem);margin:var(--ds-size-50, 0.25rem) 0}`;
|
|
17221
17221
|
|
|
17222
17222
|
var colorCss$2$1 = css`.container{background-color:var(--ds-auro-dropdownbib-container-color);box-shadow:var(--ds-auro-dropdownbib-boxshadow-color);color:var(--ds-auro-dropdownbib-text-color)}`;
|
|
17223
17223
|
|
|
@@ -3025,7 +3025,7 @@ class AuroIcon extends BaseIcon {
|
|
|
3025
3025
|
|
|
3026
3026
|
var iconVersion = '8.1.2';
|
|
3027
3027
|
|
|
3028
|
-
var styleCss$2 = i$2`:host{position:fixed;z-index:var(--depth-tooltip, 400);display:none;isolation:isolate}:host(:not([matchWidth])) .container{min-width:fit-content}:host([isfullscreen]){position:fixed;top:0;left:0}:host([isfullscreen]) .container{width:100dvw;max-width:none;height:100dvh;max-height:none;border-radius:unset;margin-top:0;box-shadow:unset;overscroll-behavior:contain}:host([data-show]){display:flex}:host([common]:not([isfullscreen])) .container,:host([rounded]:not([isfullscreen])) .container{border-radius:var(--ds-border-radius, 0.375rem)}:host([common][isfullscreen]) .container,:host([rounded][isfullscreen]) .container{border-radius:unset;box-shadow:unset}:host(:not([isfullscreen])) .container.shape-box{border-radius:unset}:host(:not([isfullscreen])) .container[class*=shape-pill]
|
|
3028
|
+
var styleCss$2 = i$2`:host{position:fixed;z-index:var(--depth-tooltip, 400);display:none;isolation:isolate}:host(:not([matchWidth])) .container{min-width:fit-content}:host([isfullscreen]){position:fixed;top:0;left:0}:host([isfullscreen]) .container{width:100dvw;max-width:none;height:100dvh;max-height:none;border-radius:unset;margin-top:0;box-shadow:unset;overscroll-behavior:contain}:host([data-show]){display:flex}:host([common]:not([isfullscreen])) .container,:host([rounded]:not([isfullscreen])) .container{border-radius:var(--ds-border-radius, 0.375rem)}:host([common][isfullscreen]) .container,:host([rounded][isfullscreen]) .container{border-radius:unset;box-shadow:unset}:host(:not([isfullscreen])) .container.shape-box{border-radius:unset}:host(:not([isfullscreen])) .container[class*=shape-pill],:host(:not([isfullscreen])) .container[class*=shape-snowflake]{border-radius:30px}.container{display:inline-block;overflow:auto;box-sizing:border-box;border-radius:var(--ds-border-radius, 0.375rem);margin:var(--ds-size-50, 0.25rem) 0}`;
|
|
3029
3029
|
|
|
3030
3030
|
var colorCss$2 = i$2`.container{background-color:var(--ds-auro-dropdownbib-container-color);box-shadow:var(--ds-auro-dropdownbib-boxshadow-color);color:var(--ds-auro-dropdownbib-text-color)}`;
|
|
3031
3031
|
|
|
@@ -3000,7 +3000,7 @@ class AuroIcon extends BaseIcon {
|
|
|
3000
3000
|
|
|
3001
3001
|
var iconVersion = '8.1.2';
|
|
3002
3002
|
|
|
3003
|
-
var styleCss$2 = i$2`:host{position:fixed;z-index:var(--depth-tooltip, 400);display:none;isolation:isolate}:host(:not([matchWidth])) .container{min-width:fit-content}:host([isfullscreen]){position:fixed;top:0;left:0}:host([isfullscreen]) .container{width:100dvw;max-width:none;height:100dvh;max-height:none;border-radius:unset;margin-top:0;box-shadow:unset;overscroll-behavior:contain}:host([data-show]){display:flex}:host([common]:not([isfullscreen])) .container,:host([rounded]:not([isfullscreen])) .container{border-radius:var(--ds-border-radius, 0.375rem)}:host([common][isfullscreen]) .container,:host([rounded][isfullscreen]) .container{border-radius:unset;box-shadow:unset}:host(:not([isfullscreen])) .container.shape-box{border-radius:unset}:host(:not([isfullscreen])) .container[class*=shape-pill]
|
|
3003
|
+
var styleCss$2 = i$2`:host{position:fixed;z-index:var(--depth-tooltip, 400);display:none;isolation:isolate}:host(:not([matchWidth])) .container{min-width:fit-content}:host([isfullscreen]){position:fixed;top:0;left:0}:host([isfullscreen]) .container{width:100dvw;max-width:none;height:100dvh;max-height:none;border-radius:unset;margin-top:0;box-shadow:unset;overscroll-behavior:contain}:host([data-show]){display:flex}:host([common]:not([isfullscreen])) .container,:host([rounded]:not([isfullscreen])) .container{border-radius:var(--ds-border-radius, 0.375rem)}:host([common][isfullscreen]) .container,:host([rounded][isfullscreen]) .container{border-radius:unset;box-shadow:unset}:host(:not([isfullscreen])) .container.shape-box{border-radius:unset}:host(:not([isfullscreen])) .container[class*=shape-pill],:host(:not([isfullscreen])) .container[class*=shape-snowflake]{border-radius:30px}.container{display:inline-block;overflow:auto;box-sizing:border-box;border-radius:var(--ds-border-radius, 0.375rem);margin:var(--ds-size-50, 0.25rem) 0}`;
|
|
3004
3004
|
|
|
3005
3005
|
var colorCss$2 = i$2`.container{background-color:var(--ds-auro-dropdownbib-container-color);box-shadow:var(--ds-auro-dropdownbib-boxshadow-color);color:var(--ds-auro-dropdownbib-text-color)}`;
|
|
3006
3006
|
|
|
@@ -2953,7 +2953,7 @@ class AuroIcon extends BaseIcon {
|
|
|
2953
2953
|
|
|
2954
2954
|
var iconVersion = '8.1.2';
|
|
2955
2955
|
|
|
2956
|
-
var styleCss$2 = css`:host{position:fixed;z-index:var(--depth-tooltip, 400);display:none;isolation:isolate}:host(:not([matchWidth])) .container{min-width:fit-content}:host([isfullscreen]){position:fixed;top:0;left:0}:host([isfullscreen]) .container{width:100dvw;max-width:none;height:100dvh;max-height:none;border-radius:unset;margin-top:0;box-shadow:unset;overscroll-behavior:contain}:host([data-show]){display:flex}:host([common]:not([isfullscreen])) .container,:host([rounded]:not([isfullscreen])) .container{border-radius:var(--ds-border-radius, 0.375rem)}:host([common][isfullscreen]) .container,:host([rounded][isfullscreen]) .container{border-radius:unset;box-shadow:unset}:host(:not([isfullscreen])) .container.shape-box{border-radius:unset}:host(:not([isfullscreen])) .container[class*=shape-pill]
|
|
2956
|
+
var styleCss$2 = css`:host{position:fixed;z-index:var(--depth-tooltip, 400);display:none;isolation:isolate}:host(:not([matchWidth])) .container{min-width:fit-content}:host([isfullscreen]){position:fixed;top:0;left:0}:host([isfullscreen]) .container{width:100dvw;max-width:none;height:100dvh;max-height:none;border-radius:unset;margin-top:0;box-shadow:unset;overscroll-behavior:contain}:host([data-show]){display:flex}:host([common]:not([isfullscreen])) .container,:host([rounded]:not([isfullscreen])) .container{border-radius:var(--ds-border-radius, 0.375rem)}:host([common][isfullscreen]) .container,:host([rounded][isfullscreen]) .container{border-radius:unset;box-shadow:unset}:host(:not([isfullscreen])) .container.shape-box{border-radius:unset}:host(:not([isfullscreen])) .container[class*=shape-pill],:host(:not([isfullscreen])) .container[class*=shape-snowflake]{border-radius:30px}.container{display:inline-block;overflow:auto;box-sizing:border-box;border-radius:var(--ds-border-radius, 0.375rem);margin:var(--ds-size-50, 0.25rem) 0}`;
|
|
2957
2957
|
|
|
2958
2958
|
var colorCss$2 = css`.container{background-color:var(--ds-auro-dropdownbib-container-color);box-shadow:var(--ds-auro-dropdownbib-boxshadow-color);color:var(--ds-auro-dropdownbib-text-color)}`;
|
|
2959
2959
|
|
|
@@ -2953,7 +2953,7 @@ class AuroIcon extends BaseIcon {
|
|
|
2953
2953
|
|
|
2954
2954
|
var iconVersion = '8.1.2';
|
|
2955
2955
|
|
|
2956
|
-
var styleCss$2 = css`:host{position:fixed;z-index:var(--depth-tooltip, 400);display:none;isolation:isolate}:host(:not([matchWidth])) .container{min-width:fit-content}:host([isfullscreen]){position:fixed;top:0;left:0}:host([isfullscreen]) .container{width:100dvw;max-width:none;height:100dvh;max-height:none;border-radius:unset;margin-top:0;box-shadow:unset;overscroll-behavior:contain}:host([data-show]){display:flex}:host([common]:not([isfullscreen])) .container,:host([rounded]:not([isfullscreen])) .container{border-radius:var(--ds-border-radius, 0.375rem)}:host([common][isfullscreen]) .container,:host([rounded][isfullscreen]) .container{border-radius:unset;box-shadow:unset}:host(:not([isfullscreen])) .container.shape-box{border-radius:unset}:host(:not([isfullscreen])) .container[class*=shape-pill]
|
|
2956
|
+
var styleCss$2 = css`:host{position:fixed;z-index:var(--depth-tooltip, 400);display:none;isolation:isolate}:host(:not([matchWidth])) .container{min-width:fit-content}:host([isfullscreen]){position:fixed;top:0;left:0}:host([isfullscreen]) .container{width:100dvw;max-width:none;height:100dvh;max-height:none;border-radius:unset;margin-top:0;box-shadow:unset;overscroll-behavior:contain}:host([data-show]){display:flex}:host([common]:not([isfullscreen])) .container,:host([rounded]:not([isfullscreen])) .container{border-radius:var(--ds-border-radius, 0.375rem)}:host([common][isfullscreen]) .container,:host([rounded][isfullscreen]) .container{border-radius:unset;box-shadow:unset}:host(:not([isfullscreen])) .container.shape-box{border-radius:unset}:host(:not([isfullscreen])) .container[class*=shape-pill],:host(:not([isfullscreen])) .container[class*=shape-snowflake]{border-radius:30px}.container{display:inline-block;overflow:auto;box-sizing:border-box;border-radius:var(--ds-border-radius, 0.375rem);margin:var(--ds-size-50, 0.25rem) 0}`;
|
|
2957
2957
|
|
|
2958
2958
|
var colorCss$2 = css`.container{background-color:var(--ds-auro-dropdownbib-container-color);box-shadow:var(--ds-auro-dropdownbib-boxshadow-color);color:var(--ds-auro-dropdownbib-text-color)}`;
|
|
2959
2959
|
|
|
@@ -4098,7 +4098,7 @@ let AuroIcon$2 = class AuroIcon extends BaseIcon$2 {
|
|
|
4098
4098
|
|
|
4099
4099
|
var iconVersion$2 = '8.1.2';
|
|
4100
4100
|
|
|
4101
|
-
var styleCss$2$2 = i$5`:host{position:fixed;z-index:var(--depth-tooltip, 400);display:none;isolation:isolate}:host(:not([matchWidth])) .container{min-width:fit-content}:host([isfullscreen]){position:fixed;top:0;left:0}:host([isfullscreen]) .container{width:100dvw;max-width:none;height:100dvh;max-height:none;border-radius:unset;margin-top:0;box-shadow:unset;overscroll-behavior:contain}:host([data-show]){display:flex}:host([common]:not([isfullscreen])) .container,:host([rounded]:not([isfullscreen])) .container{border-radius:var(--ds-border-radius, 0.375rem)}:host([common][isfullscreen]) .container,:host([rounded][isfullscreen]) .container{border-radius:unset;box-shadow:unset}:host(:not([isfullscreen])) .container.shape-box{border-radius:unset}:host(:not([isfullscreen])) .container[class*=shape-pill]
|
|
4101
|
+
var styleCss$2$2 = i$5`:host{position:fixed;z-index:var(--depth-tooltip, 400);display:none;isolation:isolate}:host(:not([matchWidth])) .container{min-width:fit-content}:host([isfullscreen]){position:fixed;top:0;left:0}:host([isfullscreen]) .container{width:100dvw;max-width:none;height:100dvh;max-height:none;border-radius:unset;margin-top:0;box-shadow:unset;overscroll-behavior:contain}:host([data-show]){display:flex}:host([common]:not([isfullscreen])) .container,:host([rounded]:not([isfullscreen])) .container{border-radius:var(--ds-border-radius, 0.375rem)}:host([common][isfullscreen]) .container,:host([rounded][isfullscreen]) .container{border-radius:unset;box-shadow:unset}:host(:not([isfullscreen])) .container.shape-box{border-radius:unset}:host(:not([isfullscreen])) .container[class*=shape-pill],:host(:not([isfullscreen])) .container[class*=shape-snowflake]{border-radius:30px}.container{display:inline-block;overflow:auto;box-sizing:border-box;border-radius:var(--ds-border-radius, 0.375rem);margin:var(--ds-size-50, 0.25rem) 0}`;
|
|
4102
4102
|
|
|
4103
4103
|
var colorCss$2$2 = i$5`.container{background-color:var(--ds-auro-dropdownbib-container-color);box-shadow:var(--ds-auro-dropdownbib-boxshadow-color);color:var(--ds-auro-dropdownbib-text-color)}`;
|
|
4104
4104
|
|
|
@@ -8273,21 +8273,11 @@ class AuroSelect extends AuroElement$4 {
|
|
|
8273
8273
|
} else {
|
|
8274
8274
|
// set menu's default size if there it's not specified.
|
|
8275
8275
|
if (!this.menu.getAttribute('size')) {
|
|
8276
|
-
this.menu.setAttribute('size', this.layout
|
|
8276
|
+
this.menu.setAttribute('size', this.layout !== 'emphasized' ? 'md' : this.size);
|
|
8277
8277
|
}
|
|
8278
8278
|
|
|
8279
8279
|
if (!this.menu.getAttribute('shape')) {
|
|
8280
|
-
|
|
8281
|
-
case 'classic':
|
|
8282
|
-
this.menu.setAttribute('shape', 'box');
|
|
8283
|
-
break;
|
|
8284
|
-
case 'snowflake':
|
|
8285
|
-
this.menu.setAttribute('shape', 'pill');
|
|
8286
|
-
break;
|
|
8287
|
-
default:
|
|
8288
|
-
this.menu.setAttribute('shape', this.shape);
|
|
8289
|
-
break;
|
|
8290
|
-
}
|
|
8280
|
+
this.menu.setAttribute('shape', this.layout === 'classic' ? 'box' : this.shape);
|
|
8291
8281
|
}
|
|
8292
8282
|
}
|
|
8293
8283
|
}
|
|
@@ -8676,21 +8666,11 @@ class AuroSelect extends AuroElement$4 {
|
|
|
8676
8666
|
}
|
|
8677
8667
|
|
|
8678
8668
|
if (changedProperties.has('shape') && this.menu) {
|
|
8679
|
-
|
|
8680
|
-
case 'classic':
|
|
8681
|
-
this.menu.setAttribute('shape', 'box');
|
|
8682
|
-
break;
|
|
8683
|
-
case 'snowflake':
|
|
8684
|
-
this.menu.setAttribute('shape', 'pill');
|
|
8685
|
-
break;
|
|
8686
|
-
default:
|
|
8687
|
-
this.menu.setAttribute('shape', this.shape);
|
|
8688
|
-
break;
|
|
8689
|
-
}
|
|
8669
|
+
this.menu.setAttribute('shape', this.layout === 'classic' ? 'box' : this.shape);
|
|
8690
8670
|
}
|
|
8691
8671
|
|
|
8692
8672
|
if (changedProperties.has('size') && this.menu) {
|
|
8693
|
-
this.menu.setAttribute('size', this.layout
|
|
8673
|
+
this.menu.setAttribute('size', this.layout !== 'emphasized' ? 'md' : this.size);
|
|
8694
8674
|
}
|
|
8695
8675
|
}
|
|
8696
8676
|
|
|
@@ -4006,7 +4006,7 @@ let AuroIcon$2 = class AuroIcon extends BaseIcon$2 {
|
|
|
4006
4006
|
|
|
4007
4007
|
var iconVersion$2 = '8.1.2';
|
|
4008
4008
|
|
|
4009
|
-
var styleCss$2$2 = i$5`:host{position:fixed;z-index:var(--depth-tooltip, 400);display:none;isolation:isolate}:host(:not([matchWidth])) .container{min-width:fit-content}:host([isfullscreen]){position:fixed;top:0;left:0}:host([isfullscreen]) .container{width:100dvw;max-width:none;height:100dvh;max-height:none;border-radius:unset;margin-top:0;box-shadow:unset;overscroll-behavior:contain}:host([data-show]){display:flex}:host([common]:not([isfullscreen])) .container,:host([rounded]:not([isfullscreen])) .container{border-radius:var(--ds-border-radius, 0.375rem)}:host([common][isfullscreen]) .container,:host([rounded][isfullscreen]) .container{border-radius:unset;box-shadow:unset}:host(:not([isfullscreen])) .container.shape-box{border-radius:unset}:host(:not([isfullscreen])) .container[class*=shape-pill]
|
|
4009
|
+
var styleCss$2$2 = i$5`:host{position:fixed;z-index:var(--depth-tooltip, 400);display:none;isolation:isolate}:host(:not([matchWidth])) .container{min-width:fit-content}:host([isfullscreen]){position:fixed;top:0;left:0}:host([isfullscreen]) .container{width:100dvw;max-width:none;height:100dvh;max-height:none;border-radius:unset;margin-top:0;box-shadow:unset;overscroll-behavior:contain}:host([data-show]){display:flex}:host([common]:not([isfullscreen])) .container,:host([rounded]:not([isfullscreen])) .container{border-radius:var(--ds-border-radius, 0.375rem)}:host([common][isfullscreen]) .container,:host([rounded][isfullscreen]) .container{border-radius:unset;box-shadow:unset}:host(:not([isfullscreen])) .container.shape-box{border-radius:unset}:host(:not([isfullscreen])) .container[class*=shape-pill],:host(:not([isfullscreen])) .container[class*=shape-snowflake]{border-radius:30px}.container{display:inline-block;overflow:auto;box-sizing:border-box;border-radius:var(--ds-border-radius, 0.375rem);margin:var(--ds-size-50, 0.25rem) 0}`;
|
|
4010
4010
|
|
|
4011
4011
|
var colorCss$2$2 = i$5`.container{background-color:var(--ds-auro-dropdownbib-container-color);box-shadow:var(--ds-auro-dropdownbib-boxshadow-color);color:var(--ds-auro-dropdownbib-text-color)}`;
|
|
4012
4012
|
|
|
@@ -8181,21 +8181,11 @@ class AuroSelect extends AuroElement$4 {
|
|
|
8181
8181
|
} else {
|
|
8182
8182
|
// set menu's default size if there it's not specified.
|
|
8183
8183
|
if (!this.menu.getAttribute('size')) {
|
|
8184
|
-
this.menu.setAttribute('size', this.layout
|
|
8184
|
+
this.menu.setAttribute('size', this.layout !== 'emphasized' ? 'md' : this.size);
|
|
8185
8185
|
}
|
|
8186
8186
|
|
|
8187
8187
|
if (!this.menu.getAttribute('shape')) {
|
|
8188
|
-
|
|
8189
|
-
case 'classic':
|
|
8190
|
-
this.menu.setAttribute('shape', 'box');
|
|
8191
|
-
break;
|
|
8192
|
-
case 'snowflake':
|
|
8193
|
-
this.menu.setAttribute('shape', 'pill');
|
|
8194
|
-
break;
|
|
8195
|
-
default:
|
|
8196
|
-
this.menu.setAttribute('shape', this.shape);
|
|
8197
|
-
break;
|
|
8198
|
-
}
|
|
8188
|
+
this.menu.setAttribute('shape', this.layout === 'classic' ? 'box' : this.shape);
|
|
8199
8189
|
}
|
|
8200
8190
|
}
|
|
8201
8191
|
}
|
|
@@ -8584,21 +8574,11 @@ class AuroSelect extends AuroElement$4 {
|
|
|
8584
8574
|
}
|
|
8585
8575
|
|
|
8586
8576
|
if (changedProperties.has('shape') && this.menu) {
|
|
8587
|
-
|
|
8588
|
-
case 'classic':
|
|
8589
|
-
this.menu.setAttribute('shape', 'box');
|
|
8590
|
-
break;
|
|
8591
|
-
case 'snowflake':
|
|
8592
|
-
this.menu.setAttribute('shape', 'pill');
|
|
8593
|
-
break;
|
|
8594
|
-
default:
|
|
8595
|
-
this.menu.setAttribute('shape', this.shape);
|
|
8596
|
-
break;
|
|
8597
|
-
}
|
|
8577
|
+
this.menu.setAttribute('shape', this.layout === 'classic' ? 'box' : this.shape);
|
|
8598
8578
|
}
|
|
8599
8579
|
|
|
8600
8580
|
if (changedProperties.has('size') && this.menu) {
|
|
8601
|
-
this.menu.setAttribute('size', this.layout
|
|
8581
|
+
this.menu.setAttribute('size', this.layout !== 'emphasized' ? 'md' : this.size);
|
|
8602
8582
|
}
|
|
8603
8583
|
}
|
|
8604
8584
|
|
|
@@ -3960,7 +3960,7 @@ let AuroIcon$1 = class AuroIcon extends BaseIcon$1 {
|
|
|
3960
3960
|
|
|
3961
3961
|
var iconVersion$1 = '8.1.2';
|
|
3962
3962
|
|
|
3963
|
-
var styleCss$2$1 = css`:host{position:fixed;z-index:var(--depth-tooltip, 400);display:none;isolation:isolate}:host(:not([matchWidth])) .container{min-width:fit-content}:host([isfullscreen]){position:fixed;top:0;left:0}:host([isfullscreen]) .container{width:100dvw;max-width:none;height:100dvh;max-height:none;border-radius:unset;margin-top:0;box-shadow:unset;overscroll-behavior:contain}:host([data-show]){display:flex}:host([common]:not([isfullscreen])) .container,:host([rounded]:not([isfullscreen])) .container{border-radius:var(--ds-border-radius, 0.375rem)}:host([common][isfullscreen]) .container,:host([rounded][isfullscreen]) .container{border-radius:unset;box-shadow:unset}:host(:not([isfullscreen])) .container.shape-box{border-radius:unset}:host(:not([isfullscreen])) .container[class*=shape-pill]
|
|
3963
|
+
var styleCss$2$1 = css`:host{position:fixed;z-index:var(--depth-tooltip, 400);display:none;isolation:isolate}:host(:not([matchWidth])) .container{min-width:fit-content}:host([isfullscreen]){position:fixed;top:0;left:0}:host([isfullscreen]) .container{width:100dvw;max-width:none;height:100dvh;max-height:none;border-radius:unset;margin-top:0;box-shadow:unset;overscroll-behavior:contain}:host([data-show]){display:flex}:host([common]:not([isfullscreen])) .container,:host([rounded]:not([isfullscreen])) .container{border-radius:var(--ds-border-radius, 0.375rem)}:host([common][isfullscreen]) .container,:host([rounded][isfullscreen]) .container{border-radius:unset;box-shadow:unset}:host(:not([isfullscreen])) .container.shape-box{border-radius:unset}:host(:not([isfullscreen])) .container[class*=shape-pill],:host(:not([isfullscreen])) .container[class*=shape-snowflake]{border-radius:30px}.container{display:inline-block;overflow:auto;box-sizing:border-box;border-radius:var(--ds-border-radius, 0.375rem);margin:var(--ds-size-50, 0.25rem) 0}`;
|
|
3964
3964
|
|
|
3965
3965
|
var colorCss$2$1 = css`.container{background-color:var(--ds-auro-dropdownbib-container-color);box-shadow:var(--ds-auro-dropdownbib-boxshadow-color);color:var(--ds-auro-dropdownbib-text-color)}`;
|
|
3966
3966
|
|
|
@@ -8135,21 +8135,11 @@ class AuroSelect extends AuroElement$3 {
|
|
|
8135
8135
|
} else {
|
|
8136
8136
|
// set menu's default size if there it's not specified.
|
|
8137
8137
|
if (!this.menu.getAttribute('size')) {
|
|
8138
|
-
this.menu.setAttribute('size', this.layout
|
|
8138
|
+
this.menu.setAttribute('size', this.layout !== 'emphasized' ? 'md' : this.size);
|
|
8139
8139
|
}
|
|
8140
8140
|
|
|
8141
8141
|
if (!this.menu.getAttribute('shape')) {
|
|
8142
|
-
|
|
8143
|
-
case 'classic':
|
|
8144
|
-
this.menu.setAttribute('shape', 'box');
|
|
8145
|
-
break;
|
|
8146
|
-
case 'snowflake':
|
|
8147
|
-
this.menu.setAttribute('shape', 'pill');
|
|
8148
|
-
break;
|
|
8149
|
-
default:
|
|
8150
|
-
this.menu.setAttribute('shape', this.shape);
|
|
8151
|
-
break;
|
|
8152
|
-
}
|
|
8142
|
+
this.menu.setAttribute('shape', this.layout === 'classic' ? 'box' : this.shape);
|
|
8153
8143
|
}
|
|
8154
8144
|
}
|
|
8155
8145
|
}
|
|
@@ -8538,21 +8528,11 @@ class AuroSelect extends AuroElement$3 {
|
|
|
8538
8528
|
}
|
|
8539
8529
|
|
|
8540
8530
|
if (changedProperties.has('shape') && this.menu) {
|
|
8541
|
-
|
|
8542
|
-
case 'classic':
|
|
8543
|
-
this.menu.setAttribute('shape', 'box');
|
|
8544
|
-
break;
|
|
8545
|
-
case 'snowflake':
|
|
8546
|
-
this.menu.setAttribute('shape', 'pill');
|
|
8547
|
-
break;
|
|
8548
|
-
default:
|
|
8549
|
-
this.menu.setAttribute('shape', this.shape);
|
|
8550
|
-
break;
|
|
8551
|
-
}
|
|
8531
|
+
this.menu.setAttribute('shape', this.layout === 'classic' ? 'box' : this.shape);
|
|
8552
8532
|
}
|
|
8553
8533
|
|
|
8554
8534
|
if (changedProperties.has('size') && this.menu) {
|
|
8555
|
-
this.menu.setAttribute('size', this.layout
|
|
8535
|
+
this.menu.setAttribute('size', this.layout !== 'emphasized' ? 'md' : this.size);
|
|
8556
8536
|
}
|
|
8557
8537
|
}
|
|
8558
8538
|
|
|
@@ -3960,7 +3960,7 @@ let AuroIcon$1 = class AuroIcon extends BaseIcon$1 {
|
|
|
3960
3960
|
|
|
3961
3961
|
var iconVersion$1 = '8.1.2';
|
|
3962
3962
|
|
|
3963
|
-
var styleCss$2$1 = css`:host{position:fixed;z-index:var(--depth-tooltip, 400);display:none;isolation:isolate}:host(:not([matchWidth])) .container{min-width:fit-content}:host([isfullscreen]){position:fixed;top:0;left:0}:host([isfullscreen]) .container{width:100dvw;max-width:none;height:100dvh;max-height:none;border-radius:unset;margin-top:0;box-shadow:unset;overscroll-behavior:contain}:host([data-show]){display:flex}:host([common]:not([isfullscreen])) .container,:host([rounded]:not([isfullscreen])) .container{border-radius:var(--ds-border-radius, 0.375rem)}:host([common][isfullscreen]) .container,:host([rounded][isfullscreen]) .container{border-radius:unset;box-shadow:unset}:host(:not([isfullscreen])) .container.shape-box{border-radius:unset}:host(:not([isfullscreen])) .container[class*=shape-pill]
|
|
3963
|
+
var styleCss$2$1 = css`:host{position:fixed;z-index:var(--depth-tooltip, 400);display:none;isolation:isolate}:host(:not([matchWidth])) .container{min-width:fit-content}:host([isfullscreen]){position:fixed;top:0;left:0}:host([isfullscreen]) .container{width:100dvw;max-width:none;height:100dvh;max-height:none;border-radius:unset;margin-top:0;box-shadow:unset;overscroll-behavior:contain}:host([data-show]){display:flex}:host([common]:not([isfullscreen])) .container,:host([rounded]:not([isfullscreen])) .container{border-radius:var(--ds-border-radius, 0.375rem)}:host([common][isfullscreen]) .container,:host([rounded][isfullscreen]) .container{border-radius:unset;box-shadow:unset}:host(:not([isfullscreen])) .container.shape-box{border-radius:unset}:host(:not([isfullscreen])) .container[class*=shape-pill],:host(:not([isfullscreen])) .container[class*=shape-snowflake]{border-radius:30px}.container{display:inline-block;overflow:auto;box-sizing:border-box;border-radius:var(--ds-border-radius, 0.375rem);margin:var(--ds-size-50, 0.25rem) 0}`;
|
|
3964
3964
|
|
|
3965
3965
|
var colorCss$2$1 = css`.container{background-color:var(--ds-auro-dropdownbib-container-color);box-shadow:var(--ds-auro-dropdownbib-boxshadow-color);color:var(--ds-auro-dropdownbib-text-color)}`;
|
|
3966
3966
|
|
|
@@ -8135,21 +8135,11 @@ class AuroSelect extends AuroElement$3 {
|
|
|
8135
8135
|
} else {
|
|
8136
8136
|
// set menu's default size if there it's not specified.
|
|
8137
8137
|
if (!this.menu.getAttribute('size')) {
|
|
8138
|
-
this.menu.setAttribute('size', this.layout
|
|
8138
|
+
this.menu.setAttribute('size', this.layout !== 'emphasized' ? 'md' : this.size);
|
|
8139
8139
|
}
|
|
8140
8140
|
|
|
8141
8141
|
if (!this.menu.getAttribute('shape')) {
|
|
8142
|
-
|
|
8143
|
-
case 'classic':
|
|
8144
|
-
this.menu.setAttribute('shape', 'box');
|
|
8145
|
-
break;
|
|
8146
|
-
case 'snowflake':
|
|
8147
|
-
this.menu.setAttribute('shape', 'pill');
|
|
8148
|
-
break;
|
|
8149
|
-
default:
|
|
8150
|
-
this.menu.setAttribute('shape', this.shape);
|
|
8151
|
-
break;
|
|
8152
|
-
}
|
|
8142
|
+
this.menu.setAttribute('shape', this.layout === 'classic' ? 'box' : this.shape);
|
|
8153
8143
|
}
|
|
8154
8144
|
}
|
|
8155
8145
|
}
|
|
@@ -8538,21 +8528,11 @@ class AuroSelect extends AuroElement$3 {
|
|
|
8538
8528
|
}
|
|
8539
8529
|
|
|
8540
8530
|
if (changedProperties.has('shape') && this.menu) {
|
|
8541
|
-
|
|
8542
|
-
case 'classic':
|
|
8543
|
-
this.menu.setAttribute('shape', 'box');
|
|
8544
|
-
break;
|
|
8545
|
-
case 'snowflake':
|
|
8546
|
-
this.menu.setAttribute('shape', 'pill');
|
|
8547
|
-
break;
|
|
8548
|
-
default:
|
|
8549
|
-
this.menu.setAttribute('shape', this.shape);
|
|
8550
|
-
break;
|
|
8551
|
-
}
|
|
8531
|
+
this.menu.setAttribute('shape', this.layout === 'classic' ? 'box' : this.shape);
|
|
8552
8532
|
}
|
|
8553
8533
|
|
|
8554
8534
|
if (changedProperties.has('size') && this.menu) {
|
|
8555
|
-
this.menu.setAttribute('size', this.layout
|
|
8535
|
+
this.menu.setAttribute('size', this.layout !== 'emphasized' ? 'md' : this.size);
|
|
8556
8536
|
}
|
|
8557
8537
|
}
|
|
8558
8538
|
|
package/package.json
CHANGED