@breadstone/mosaik-elements-svelte 0.1.70 → 0.1.73

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.
Files changed (3) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/index.mjs +863 -85
  3. package/package.json +3 -3
package/index.mjs CHANGED
@@ -37192,7 +37192,7 @@ var GD = (e) => {
37192
37192
  (this.host.shadowRoot?.querySelector("[part=\"label\"]"))?.classList.toggle("floating", this.shouldFloat());
37193
37193
  }
37194
37194
  hasValue() {
37195
- return this._valueProperties.some((e) => !this.isEmpty(Reflect.get(this.host, e)));
37195
+ return this.host.hasSlotContent?.("value") === !0 || this._valueProperties.some((e) => !this.isEmpty(Reflect.get(this.host, e)));
37196
37196
  }
37197
37197
  isEmpty(e) {
37198
37198
  return e == null || e === "" || Array.isArray(e) && e.length === 0;
@@ -38073,6 +38073,18 @@ function sO() {
38073
38073
  resize: none;
38074
38074
  }
38075
38075
 
38076
+ :host input[part="input"] {
38077
+ min-inline-size: 0;
38078
+ }
38079
+
38080
+ :host input[part="input"]:-moz-placeholder-shown {
38081
+ text-overflow: ellipsis;
38082
+ }
38083
+
38084
+ :host input[part="input"]:placeholder-shown {
38085
+ text-overflow: ellipsis;
38086
+ }
38087
+
38076
38088
  :host [part="label"] {
38077
38089
  -webkit-user-select: none;
38078
38090
  -moz-user-select: none;
@@ -38080,6 +38092,7 @@ function sO() {
38080
38092
  pointer-events: none;
38081
38093
  transform-origin: 0 0;
38082
38094
  text-align: left;
38095
+ max-inline-size: calc(100% - var(--textbox-padding-left) - var(--textbox-padding-right));
38083
38096
  text-overflow: ellipsis;
38084
38097
  white-space: nowrap;
38085
38098
  will-change: transform;
@@ -38359,6 +38372,18 @@ function cO() {
38359
38372
  resize: none;
38360
38373
  }
38361
38374
 
38375
+ :host input[part="input"] {
38376
+ min-inline-size: 0;
38377
+ }
38378
+
38379
+ :host input[part="input"]:-moz-placeholder-shown {
38380
+ text-overflow: ellipsis;
38381
+ }
38382
+
38383
+ :host input[part="input"]:placeholder-shown {
38384
+ text-overflow: ellipsis;
38385
+ }
38386
+
38362
38387
  :host [part="label"] {
38363
38388
  -webkit-user-select: none;
38364
38389
  -moz-user-select: none;
@@ -38366,6 +38391,7 @@ function cO() {
38366
38391
  pointer-events: none;
38367
38392
  transform-origin: 0 0;
38368
38393
  text-align: left;
38394
+ max-inline-size: calc(100% - var(--textbox-padding-left) - var(--textbox-padding-right));
38369
38395
  text-overflow: ellipsis;
38370
38396
  white-space: nowrap;
38371
38397
  will-change: transform;
@@ -38868,6 +38894,18 @@ function lO() {
38868
38894
  resize: none;
38869
38895
  }
38870
38896
 
38897
+ :host input[part="input"] {
38898
+ min-inline-size: 0;
38899
+ }
38900
+
38901
+ :host input[part="input"]:-moz-placeholder-shown {
38902
+ text-overflow: ellipsis;
38903
+ }
38904
+
38905
+ :host input[part="input"]:placeholder-shown {
38906
+ text-overflow: ellipsis;
38907
+ }
38908
+
38871
38909
  :host [part="label"] {
38872
38910
  -webkit-user-select: none;
38873
38911
  -moz-user-select: none;
@@ -38875,6 +38913,7 @@ function lO() {
38875
38913
  pointer-events: none;
38876
38914
  transform-origin: 0 0;
38877
38915
  text-align: left;
38916
+ max-inline-size: calc(100% - var(--textbox-padding-left) - var(--textbox-padding-right));
38878
38917
  text-overflow: ellipsis;
38879
38918
  white-space: nowrap;
38880
38919
  will-change: transform;
@@ -40621,11 +40660,12 @@ var NO = function(e, t, n, r) {
40621
40660
  return this._slottedControl ?? this.control;
40622
40661
  }
40623
40662
  get isFloatingActive() {
40624
- return this.isOpen && this._anchorReady && this.anchorElement !== null;
40663
+ return !this.disabled && this.isOpen && this._anchorReady && this.anchorElement !== null;
40625
40664
  }
40626
40665
  async open() {
40666
+ if (this.disabled) return;
40627
40667
  let e = this._connectionRevision;
40628
- await super.open(), this.isCurrentConnection(e) && (this.isOpen = !0);
40668
+ await super.open(), this.isCurrentConnection(e) && !this.disabled && (this.isOpen = !0);
40629
40669
  }
40630
40670
  async close() {
40631
40671
  if (this._staysOpen) return Promise.resolve(!1);
@@ -40706,7 +40746,7 @@ var NO = function(e, t, n, r) {
40706
40746
  });
40707
40747
  }
40708
40748
  onDisabledPropertyChange() {
40709
- this.disabled && this.isOpen && this.close();
40749
+ this.disabled && (this.clearHoverTimeout(), this.isOpen &&= !1);
40710
40750
  }
40711
40751
  onForPropertyChange() {
40712
40752
  this.scheduleControlRebinding(!0);
@@ -69187,6 +69227,18 @@ function LI() {
69187
69227
  transition-property: inherit;
69188
69228
  }
69189
69229
 
69230
+ :host input[part="input"] {
69231
+ min-inline-size: 0;
69232
+ }
69233
+
69234
+ :host input[part="input"]:-moz-placeholder-shown {
69235
+ text-overflow: ellipsis;
69236
+ }
69237
+
69238
+ :host input[part="input"]:placeholder-shown {
69239
+ text-overflow: ellipsis;
69240
+ }
69241
+
69190
69242
  :host [part="label"] {
69191
69243
  -webkit-user-select: none;
69192
69244
  -moz-user-select: none;
@@ -69194,6 +69246,7 @@ function LI() {
69194
69246
  pointer-events: none;
69195
69247
  transform-origin: 0 0;
69196
69248
  text-align: left;
69249
+ max-inline-size: calc(100% - var(--chipbox-padding-left) - var(--chipbox-padding-right));
69197
69250
  text-overflow: ellipsis;
69198
69251
  white-space: nowrap;
69199
69252
  will-change: transform;
@@ -69416,6 +69469,18 @@ function RI() {
69416
69469
  transition-property: inherit;
69417
69470
  }
69418
69471
 
69472
+ :host input[part="input"] {
69473
+ min-inline-size: 0;
69474
+ }
69475
+
69476
+ :host input[part="input"]:-moz-placeholder-shown {
69477
+ text-overflow: ellipsis;
69478
+ }
69479
+
69480
+ :host input[part="input"]:placeholder-shown {
69481
+ text-overflow: ellipsis;
69482
+ }
69483
+
69419
69484
  :host [part="label"] {
69420
69485
  -webkit-user-select: none;
69421
69486
  -moz-user-select: none;
@@ -69423,6 +69488,7 @@ function RI() {
69423
69488
  pointer-events: none;
69424
69489
  transform-origin: 0 0;
69425
69490
  text-align: left;
69491
+ max-inline-size: calc(100% - var(--chipbox-padding-left) - var(--chipbox-padding-right));
69426
69492
  text-overflow: ellipsis;
69427
69493
  white-space: nowrap;
69428
69494
  will-change: transform;
@@ -69863,6 +69929,18 @@ function zI() {
69863
69929
  transition-property: inherit;
69864
69930
  }
69865
69931
 
69932
+ :host input[part="input"] {
69933
+ min-inline-size: 0;
69934
+ }
69935
+
69936
+ :host input[part="input"]:-moz-placeholder-shown {
69937
+ text-overflow: ellipsis;
69938
+ }
69939
+
69940
+ :host input[part="input"]:placeholder-shown {
69941
+ text-overflow: ellipsis;
69942
+ }
69943
+
69866
69944
  :host [part="label"] {
69867
69945
  -webkit-user-select: none;
69868
69946
  -moz-user-select: none;
@@ -69870,6 +69948,7 @@ function zI() {
69870
69948
  pointer-events: none;
69871
69949
  transform-origin: 0 0;
69872
69950
  text-align: left;
69951
+ max-inline-size: calc(100% - var(--chipbox-padding-left) - var(--chipbox-padding-right));
69873
69952
  text-overflow: ellipsis;
69874
69953
  white-space: nowrap;
69875
69954
  will-change: transform;
@@ -74263,6 +74342,18 @@ function QL() {
74263
74342
  position: relative;
74264
74343
  }
74265
74344
 
74345
+ :host input[part="input"] {
74346
+ min-inline-size: 0;
74347
+ }
74348
+
74349
+ :host input[part="input"]:-moz-placeholder-shown {
74350
+ text-overflow: ellipsis;
74351
+ }
74352
+
74353
+ :host input[part="input"]:placeholder-shown {
74354
+ text-overflow: ellipsis;
74355
+ }
74356
+
74266
74357
  :host [part="label"] {
74267
74358
  -webkit-user-select: none;
74268
74359
  -moz-user-select: none;
@@ -74270,6 +74361,7 @@ function QL() {
74270
74361
  pointer-events: none;
74271
74362
  transform-origin: 0 0;
74272
74363
  text-align: left;
74364
+ max-inline-size: calc(100% - var(--numberbox-padding-left) - var(--numberbox-padding-right));
74273
74365
  text-overflow: ellipsis;
74274
74366
  white-space: nowrap;
74275
74367
  will-change: transform;
@@ -74507,6 +74599,18 @@ function $L() {
74507
74599
  position: relative;
74508
74600
  }
74509
74601
 
74602
+ :host input[part="input"] {
74603
+ min-inline-size: 0;
74604
+ }
74605
+
74606
+ :host input[part="input"]:-moz-placeholder-shown {
74607
+ text-overflow: ellipsis;
74608
+ }
74609
+
74610
+ :host input[part="input"]:placeholder-shown {
74611
+ text-overflow: ellipsis;
74612
+ }
74613
+
74510
74614
  :host [part="label"] {
74511
74615
  -webkit-user-select: none;
74512
74616
  -moz-user-select: none;
@@ -74514,6 +74618,7 @@ function $L() {
74514
74618
  pointer-events: none;
74515
74619
  transform-origin: 0 0;
74516
74620
  text-align: left;
74621
+ max-inline-size: calc(100% - var(--numberbox-padding-left) - var(--numberbox-padding-right));
74517
74622
  text-overflow: ellipsis;
74518
74623
  white-space: nowrap;
74519
74624
  will-change: transform;
@@ -75005,6 +75110,18 @@ function eR() {
75005
75110
  position: relative;
75006
75111
  }
75007
75112
 
75113
+ :host input[part="input"] {
75114
+ min-inline-size: 0;
75115
+ }
75116
+
75117
+ :host input[part="input"]:-moz-placeholder-shown {
75118
+ text-overflow: ellipsis;
75119
+ }
75120
+
75121
+ :host input[part="input"]:placeholder-shown {
75122
+ text-overflow: ellipsis;
75123
+ }
75124
+
75008
75125
  :host [part="label"] {
75009
75126
  -webkit-user-select: none;
75010
75127
  -moz-user-select: none;
@@ -75012,6 +75129,7 @@ function eR() {
75012
75129
  pointer-events: none;
75013
75130
  transform-origin: 0 0;
75014
75131
  text-align: left;
75132
+ max-inline-size: calc(100% - var(--numberbox-padding-left) - var(--numberbox-padding-right));
75015
75133
  text-overflow: ellipsis;
75016
75134
  white-space: nowrap;
75017
75135
  will-change: transform;
@@ -80125,6 +80243,18 @@ function ez() {
80125
80243
  transition-property: inherit;
80126
80244
  }
80127
80245
 
80246
+ :host input[part="input"] {
80247
+ min-inline-size: 0;
80248
+ }
80249
+
80250
+ :host input[part="input"]:-moz-placeholder-shown {
80251
+ text-overflow: ellipsis;
80252
+ }
80253
+
80254
+ :host input[part="input"]:placeholder-shown {
80255
+ text-overflow: ellipsis;
80256
+ }
80257
+
80128
80258
  :host [part="label"] {
80129
80259
  -webkit-user-select: none;
80130
80260
  -moz-user-select: none;
@@ -80132,6 +80262,7 @@ function ez() {
80132
80262
  pointer-events: none;
80133
80263
  transform-origin: 0 0;
80134
80264
  text-align: left;
80265
+ max-inline-size: calc(100% - var(--colorbox-padding-left) - var(--colorbox-padding-right));
80135
80266
  text-overflow: ellipsis;
80136
80267
  white-space: nowrap;
80137
80268
  will-change: transform;
@@ -80364,6 +80495,18 @@ function tz() {
80364
80495
  transition-property: inherit;
80365
80496
  }
80366
80497
 
80498
+ :host input[part="input"] {
80499
+ min-inline-size: 0;
80500
+ }
80501
+
80502
+ :host input[part="input"]:-moz-placeholder-shown {
80503
+ text-overflow: ellipsis;
80504
+ }
80505
+
80506
+ :host input[part="input"]:placeholder-shown {
80507
+ text-overflow: ellipsis;
80508
+ }
80509
+
80367
80510
  :host [part="label"] {
80368
80511
  -webkit-user-select: none;
80369
80512
  -moz-user-select: none;
@@ -80371,6 +80514,7 @@ function tz() {
80371
80514
  pointer-events: none;
80372
80515
  transform-origin: 0 0;
80373
80516
  text-align: left;
80517
+ max-inline-size: calc(100% - var(--colorbox-padding-left) - var(--colorbox-padding-right));
80374
80518
  text-overflow: ellipsis;
80375
80519
  white-space: nowrap;
80376
80520
  will-change: transform;
@@ -80821,6 +80965,18 @@ function nz() {
80821
80965
  transition-property: inherit;
80822
80966
  }
80823
80967
 
80968
+ :host input[part="input"] {
80969
+ min-inline-size: 0;
80970
+ }
80971
+
80972
+ :host input[part="input"]:-moz-placeholder-shown {
80973
+ text-overflow: ellipsis;
80974
+ }
80975
+
80976
+ :host input[part="input"]:placeholder-shown {
80977
+ text-overflow: ellipsis;
80978
+ }
80979
+
80824
80980
  :host [part="label"] {
80825
80981
  -webkit-user-select: none;
80826
80982
  -moz-user-select: none;
@@ -80828,6 +80984,7 @@ function nz() {
80828
80984
  pointer-events: none;
80829
80985
  transform-origin: 0 0;
80830
80986
  text-align: left;
80987
+ max-inline-size: calc(100% - var(--colorbox-padding-left) - var(--colorbox-padding-right));
80831
80988
  text-overflow: ellipsis;
80832
80989
  white-space: nowrap;
80833
80990
  will-change: transform;
@@ -82815,6 +82972,18 @@ function Ez() {
82815
82972
  position: relative;
82816
82973
  }
82817
82974
 
82975
+ :host input[part="input"] {
82976
+ min-inline-size: 0;
82977
+ }
82978
+
82979
+ :host input[part="input"]:-moz-placeholder-shown {
82980
+ text-overflow: ellipsis;
82981
+ }
82982
+
82983
+ :host input[part="input"]:placeholder-shown {
82984
+ text-overflow: ellipsis;
82985
+ }
82986
+
82818
82987
  :host [part="label"] {
82819
82988
  -webkit-user-select: none;
82820
82989
  -moz-user-select: none;
@@ -82822,6 +82991,7 @@ function Ez() {
82822
82991
  pointer-events: none;
82823
82992
  transform-origin: 0 0;
82824
82993
  text-align: left;
82994
+ max-inline-size: calc(100% - var(--datebox-padding-left) - var(--datebox-padding-right));
82825
82995
  text-overflow: ellipsis;
82826
82996
  white-space: nowrap;
82827
82997
  will-change: transform;
@@ -83059,6 +83229,18 @@ function Dz() {
83059
83229
  position: relative;
83060
83230
  }
83061
83231
 
83232
+ :host input[part="input"] {
83233
+ min-inline-size: 0;
83234
+ }
83235
+
83236
+ :host input[part="input"]:-moz-placeholder-shown {
83237
+ text-overflow: ellipsis;
83238
+ }
83239
+
83240
+ :host input[part="input"]:placeholder-shown {
83241
+ text-overflow: ellipsis;
83242
+ }
83243
+
83062
83244
  :host [part="label"] {
83063
83245
  -webkit-user-select: none;
83064
83246
  -moz-user-select: none;
@@ -83066,6 +83248,7 @@ function Dz() {
83066
83248
  pointer-events: none;
83067
83249
  transform-origin: 0 0;
83068
83250
  text-align: left;
83251
+ max-inline-size: calc(100% - var(--datebox-padding-left) - var(--datebox-padding-right));
83069
83252
  text-overflow: ellipsis;
83070
83253
  white-space: nowrap;
83071
83254
  will-change: transform;
@@ -83417,6 +83600,18 @@ function Oz() {
83417
83600
  position: relative;
83418
83601
  }
83419
83602
 
83603
+ :host input[part="input"] {
83604
+ min-inline-size: 0;
83605
+ }
83606
+
83607
+ :host input[part="input"]:-moz-placeholder-shown {
83608
+ text-overflow: ellipsis;
83609
+ }
83610
+
83611
+ :host input[part="input"]:placeholder-shown {
83612
+ text-overflow: ellipsis;
83613
+ }
83614
+
83420
83615
  :host [part="label"] {
83421
83616
  -webkit-user-select: none;
83422
83617
  -moz-user-select: none;
@@ -83424,6 +83619,7 @@ function Oz() {
83424
83619
  pointer-events: none;
83425
83620
  transform-origin: 0 0;
83426
83621
  text-align: left;
83622
+ max-inline-size: calc(100% - var(--datebox-padding-left) - var(--datebox-padding-right));
83427
83623
  text-overflow: ellipsis;
83428
83624
  white-space: nowrap;
83429
83625
  will-change: transform;
@@ -84973,6 +85169,18 @@ function Hz() {
84973
85169
  position: relative;
84974
85170
  }
84975
85171
 
85172
+ :host input[part="input"] {
85173
+ min-inline-size: 0;
85174
+ }
85175
+
85176
+ :host input[part="input"]:-moz-placeholder-shown {
85177
+ text-overflow: ellipsis;
85178
+ }
85179
+
85180
+ :host input[part="input"]:placeholder-shown {
85181
+ text-overflow: ellipsis;
85182
+ }
85183
+
84976
85184
  :host [part="label"] {
84977
85185
  -webkit-user-select: none;
84978
85186
  -moz-user-select: none;
@@ -84980,6 +85188,7 @@ function Hz() {
84980
85188
  pointer-events: none;
84981
85189
  transform-origin: 0 0;
84982
85190
  text-align: left;
85191
+ max-inline-size: calc(100% - var(--datetimebox-padding-left) - var(--datetimebox-padding-right));
84983
85192
  text-overflow: ellipsis;
84984
85193
  white-space: nowrap;
84985
85194
  will-change: transform;
@@ -85253,6 +85462,18 @@ function Uz() {
85253
85462
  position: relative;
85254
85463
  }
85255
85464
 
85465
+ :host input[part="input"] {
85466
+ min-inline-size: 0;
85467
+ }
85468
+
85469
+ :host input[part="input"]:-moz-placeholder-shown {
85470
+ text-overflow: ellipsis;
85471
+ }
85472
+
85473
+ :host input[part="input"]:placeholder-shown {
85474
+ text-overflow: ellipsis;
85475
+ }
85476
+
85256
85477
  :host [part="label"] {
85257
85478
  -webkit-user-select: none;
85258
85479
  -moz-user-select: none;
@@ -85260,6 +85481,7 @@ function Uz() {
85260
85481
  pointer-events: none;
85261
85482
  transform-origin: 0 0;
85262
85483
  text-align: left;
85484
+ max-inline-size: calc(100% - var(--datetimebox-padding-left) - var(--datetimebox-padding-right));
85263
85485
  text-overflow: ellipsis;
85264
85486
  white-space: nowrap;
85265
85487
  will-change: transform;
@@ -85730,6 +85952,18 @@ function Wz() {
85730
85952
  position: relative;
85731
85953
  }
85732
85954
 
85955
+ :host input[part="input"] {
85956
+ min-inline-size: 0;
85957
+ }
85958
+
85959
+ :host input[part="input"]:-moz-placeholder-shown {
85960
+ text-overflow: ellipsis;
85961
+ }
85962
+
85963
+ :host input[part="input"]:placeholder-shown {
85964
+ text-overflow: ellipsis;
85965
+ }
85966
+
85733
85967
  :host [part="label"] {
85734
85968
  -webkit-user-select: none;
85735
85969
  -moz-user-select: none;
@@ -85737,6 +85971,7 @@ function Wz() {
85737
85971
  pointer-events: none;
85738
85972
  transform-origin: 0 0;
85739
85973
  text-align: left;
85974
+ max-inline-size: calc(100% - var(--datetimebox-padding-left) - var(--datetimebox-padding-right));
85740
85975
  text-overflow: ellipsis;
85741
85976
  white-space: nowrap;
85742
85977
  will-change: transform;
@@ -86690,6 +86925,18 @@ function Xz() {
86690
86925
  position: relative;
86691
86926
  }
86692
86927
 
86928
+ :host input[part="input"] {
86929
+ min-inline-size: 0;
86930
+ }
86931
+
86932
+ :host input[part="input"]:-moz-placeholder-shown {
86933
+ text-overflow: ellipsis;
86934
+ }
86935
+
86936
+ :host input[part="input"]:placeholder-shown {
86937
+ text-overflow: ellipsis;
86938
+ }
86939
+
86693
86940
  :host [part="label"] {
86694
86941
  -webkit-user-select: none;
86695
86942
  -moz-user-select: none;
@@ -86697,6 +86944,7 @@ function Xz() {
86697
86944
  pointer-events: none;
86698
86945
  transform-origin: 0 0;
86699
86946
  text-align: left;
86947
+ max-inline-size: calc(100% - var(--durationbox-padding-left) - var(--durationbox-padding-right));
86700
86948
  text-overflow: ellipsis;
86701
86949
  white-space: nowrap;
86702
86950
  will-change: transform;
@@ -86952,6 +87200,18 @@ function Zz() {
86952
87200
  position: relative;
86953
87201
  }
86954
87202
 
87203
+ :host input[part="input"] {
87204
+ min-inline-size: 0;
87205
+ }
87206
+
87207
+ :host input[part="input"]:-moz-placeholder-shown {
87208
+ text-overflow: ellipsis;
87209
+ }
87210
+
87211
+ :host input[part="input"]:placeholder-shown {
87212
+ text-overflow: ellipsis;
87213
+ }
87214
+
86955
87215
  :host [part="label"] {
86956
87216
  -webkit-user-select: none;
86957
87217
  -moz-user-select: none;
@@ -86959,6 +87219,7 @@ function Zz() {
86959
87219
  pointer-events: none;
86960
87220
  transform-origin: 0 0;
86961
87221
  text-align: left;
87222
+ max-inline-size: calc(100% - var(--durationbox-padding-left) - var(--durationbox-padding-right));
86962
87223
  text-overflow: ellipsis;
86963
87224
  white-space: nowrap;
86964
87225
  will-change: transform;
@@ -87455,6 +87716,18 @@ function Qz() {
87455
87716
  position: relative;
87456
87717
  }
87457
87718
 
87719
+ :host input[part="input"] {
87720
+ min-inline-size: 0;
87721
+ }
87722
+
87723
+ :host input[part="input"]:-moz-placeholder-shown {
87724
+ text-overflow: ellipsis;
87725
+ }
87726
+
87727
+ :host input[part="input"]:placeholder-shown {
87728
+ text-overflow: ellipsis;
87729
+ }
87730
+
87458
87731
  :host [part="label"] {
87459
87732
  -webkit-user-select: none;
87460
87733
  -moz-user-select: none;
@@ -87462,6 +87735,7 @@ function Qz() {
87462
87735
  pointer-events: none;
87463
87736
  transform-origin: 0 0;
87464
87737
  text-align: left;
87738
+ max-inline-size: calc(100% - var(--durationbox-padding-left) - var(--durationbox-padding-right));
87465
87739
  text-overflow: ellipsis;
87466
87740
  white-space: nowrap;
87467
87741
  will-change: transform;
@@ -88038,6 +88312,18 @@ function iB() {
88038
88312
  position: relative;
88039
88313
  }
88040
88314
 
88315
+ :host input[part="input"] {
88316
+ min-inline-size: 0;
88317
+ }
88318
+
88319
+ :host input[part="input"]:-moz-placeholder-shown {
88320
+ text-overflow: ellipsis;
88321
+ }
88322
+
88323
+ :host input[part="input"]:placeholder-shown {
88324
+ text-overflow: ellipsis;
88325
+ }
88326
+
88041
88327
  :host [part="label"] {
88042
88328
  -webkit-user-select: none;
88043
88329
  -moz-user-select: none;
@@ -88045,6 +88331,7 @@ function iB() {
88045
88331
  pointer-events: none;
88046
88332
  transform-origin: 0 0;
88047
88333
  text-align: left;
88334
+ max-inline-size: calc(100% - var(--filebox-padding-left) - var(--filebox-padding-right));
88048
88335
  text-overflow: ellipsis;
88049
88336
  white-space: nowrap;
88050
88337
  will-change: transform;
@@ -88261,6 +88548,18 @@ function aB() {
88261
88548
  position: relative;
88262
88549
  }
88263
88550
 
88551
+ :host input[part="input"] {
88552
+ min-inline-size: 0;
88553
+ }
88554
+
88555
+ :host input[part="input"]:-moz-placeholder-shown {
88556
+ text-overflow: ellipsis;
88557
+ }
88558
+
88559
+ :host input[part="input"]:placeholder-shown {
88560
+ text-overflow: ellipsis;
88561
+ }
88562
+
88264
88563
  :host [part="label"] {
88265
88564
  -webkit-user-select: none;
88266
88565
  -moz-user-select: none;
@@ -88268,6 +88567,7 @@ function aB() {
88268
88567
  pointer-events: none;
88269
88568
  transform-origin: 0 0;
88270
88569
  text-align: left;
88570
+ max-inline-size: calc(100% - var(--filebox-padding-left) - var(--filebox-padding-right));
88271
88571
  text-overflow: ellipsis;
88272
88572
  white-space: nowrap;
88273
88573
  will-change: transform;
@@ -88691,6 +88991,18 @@ function oB() {
88691
88991
  position: relative;
88692
88992
  }
88693
88993
 
88994
+ :host input[part="input"] {
88995
+ min-inline-size: 0;
88996
+ }
88997
+
88998
+ :host input[part="input"]:-moz-placeholder-shown {
88999
+ text-overflow: ellipsis;
89000
+ }
89001
+
89002
+ :host input[part="input"]:placeholder-shown {
89003
+ text-overflow: ellipsis;
89004
+ }
89005
+
88694
89006
  :host [part="label"] {
88695
89007
  -webkit-user-select: none;
88696
89008
  -moz-user-select: none;
@@ -88698,6 +89010,7 @@ function oB() {
88698
89010
  pointer-events: none;
88699
89011
  transform-origin: 0 0;
88700
89012
  text-align: left;
89013
+ max-inline-size: calc(100% - var(--filebox-padding-left) - var(--filebox-padding-right));
88701
89014
  text-overflow: ellipsis;
88702
89015
  white-space: nowrap;
88703
89016
  will-change: transform;
@@ -94964,6 +95277,18 @@ function eH() {
94964
95277
  position: relative;
94965
95278
  }
94966
95279
 
95280
+ :host input[part="input"] {
95281
+ min-inline-size: 0;
95282
+ }
95283
+
95284
+ :host input[part="input"]:-moz-placeholder-shown {
95285
+ text-overflow: ellipsis;
95286
+ }
95287
+
95288
+ :host input[part="input"]:placeholder-shown {
95289
+ text-overflow: ellipsis;
95290
+ }
95291
+
94967
95292
  :host [part="label"] {
94968
95293
  -webkit-user-select: none;
94969
95294
  -moz-user-select: none;
@@ -94971,6 +95296,7 @@ function eH() {
94971
95296
  pointer-events: none;
94972
95297
  transform-origin: 0 0;
94973
95298
  text-align: left;
95299
+ max-inline-size: calc(100% - var(--passwordbox-padding-left) - var(--passwordbox-padding-right));
94974
95300
  text-overflow: ellipsis;
94975
95301
  white-space: nowrap;
94976
95302
  will-change: transform;
@@ -95186,6 +95512,18 @@ function tH() {
95186
95512
  position: relative;
95187
95513
  }
95188
95514
 
95515
+ :host input[part="input"] {
95516
+ min-inline-size: 0;
95517
+ }
95518
+
95519
+ :host input[part="input"]:-moz-placeholder-shown {
95520
+ text-overflow: ellipsis;
95521
+ }
95522
+
95523
+ :host input[part="input"]:placeholder-shown {
95524
+ text-overflow: ellipsis;
95525
+ }
95526
+
95189
95527
  :host [part="label"] {
95190
95528
  -webkit-user-select: none;
95191
95529
  -moz-user-select: none;
@@ -95193,6 +95531,7 @@ function tH() {
95193
95531
  pointer-events: none;
95194
95532
  transform-origin: 0 0;
95195
95533
  text-align: left;
95534
+ max-inline-size: calc(100% - var(--passwordbox-padding-left) - var(--passwordbox-padding-right));
95196
95535
  text-overflow: ellipsis;
95197
95536
  white-space: nowrap;
95198
95537
  will-change: transform;
@@ -95615,6 +95954,18 @@ function nH() {
95615
95954
  position: relative;
95616
95955
  }
95617
95956
 
95957
+ :host input[part="input"] {
95958
+ min-inline-size: 0;
95959
+ }
95960
+
95961
+ :host input[part="input"]:-moz-placeholder-shown {
95962
+ text-overflow: ellipsis;
95963
+ }
95964
+
95965
+ :host input[part="input"]:placeholder-shown {
95966
+ text-overflow: ellipsis;
95967
+ }
95968
+
95618
95969
  :host [part="label"] {
95619
95970
  -webkit-user-select: none;
95620
95971
  -moz-user-select: none;
@@ -95622,6 +95973,7 @@ function nH() {
95622
95973
  pointer-events: none;
95623
95974
  transform-origin: 0 0;
95624
95975
  text-align: left;
95976
+ max-inline-size: calc(100% - var(--passwordbox-padding-left) - var(--passwordbox-padding-right));
95625
95977
  text-overflow: ellipsis;
95626
95978
  white-space: nowrap;
95627
95979
  will-change: transform;
@@ -101369,6 +101721,18 @@ function RU() {
101369
101721
  overflow-y: auto;
101370
101722
  }
101371
101723
 
101724
+ :host input[part="input"] {
101725
+ min-inline-size: 0;
101726
+ }
101727
+
101728
+ :host input[part="input"]:-moz-placeholder-shown {
101729
+ text-overflow: ellipsis;
101730
+ }
101731
+
101732
+ :host input[part="input"]:placeholder-shown {
101733
+ text-overflow: ellipsis;
101734
+ }
101735
+
101372
101736
  :host [part="label"] {
101373
101737
  -webkit-user-select: none;
101374
101738
  -moz-user-select: none;
@@ -101376,6 +101740,7 @@ function RU() {
101376
101740
  pointer-events: none;
101377
101741
  transform-origin: 0 0;
101378
101742
  text-align: left;
101743
+ max-inline-size: calc(100% - var(--prompt-box-padding-left) - var(--prompt-box-padding-right));
101379
101744
  text-overflow: ellipsis;
101380
101745
  white-space: nowrap;
101381
101746
  will-change: transform;
@@ -101578,6 +101943,18 @@ function zU() {
101578
101943
  overflow-y: auto;
101579
101944
  }
101580
101945
 
101946
+ :host input[part="input"] {
101947
+ min-inline-size: 0;
101948
+ }
101949
+
101950
+ :host input[part="input"]:-moz-placeholder-shown {
101951
+ text-overflow: ellipsis;
101952
+ }
101953
+
101954
+ :host input[part="input"]:placeholder-shown {
101955
+ text-overflow: ellipsis;
101956
+ }
101957
+
101581
101958
  :host [part="label"] {
101582
101959
  -webkit-user-select: none;
101583
101960
  -moz-user-select: none;
@@ -101585,6 +101962,7 @@ function zU() {
101585
101962
  pointer-events: none;
101586
101963
  transform-origin: 0 0;
101587
101964
  text-align: left;
101965
+ max-inline-size: calc(100% - var(--prompt-box-padding-left) - var(--prompt-box-padding-right));
101588
101966
  text-overflow: ellipsis;
101589
101967
  white-space: nowrap;
101590
101968
  will-change: transform;
@@ -101854,6 +102232,18 @@ function BU() {
101854
102232
  overflow-y: auto;
101855
102233
  }
101856
102234
 
102235
+ :host input[part="input"] {
102236
+ min-inline-size: 0;
102237
+ }
102238
+
102239
+ :host input[part="input"]:-moz-placeholder-shown {
102240
+ text-overflow: ellipsis;
102241
+ }
102242
+
102243
+ :host input[part="input"]:placeholder-shown {
102244
+ text-overflow: ellipsis;
102245
+ }
102246
+
101857
102247
  :host [part="label"] {
101858
102248
  -webkit-user-select: none;
101859
102249
  -moz-user-select: none;
@@ -101861,6 +102251,7 @@ function BU() {
101861
102251
  pointer-events: none;
101862
102252
  transform-origin: 0 0;
101863
102253
  text-align: left;
102254
+ max-inline-size: calc(100% - var(--prompt-box-padding-left) - var(--prompt-box-padding-right));
101864
102255
  text-overflow: ellipsis;
101865
102256
  white-space: nowrap;
101866
102257
  will-change: transform;
@@ -105326,6 +105717,18 @@ function KW() {
105326
105717
  transition-property: inherit;
105327
105718
  }
105328
105719
 
105720
+ :host input[part="input"] {
105721
+ min-inline-size: 0;
105722
+ }
105723
+
105724
+ :host input[part="input"]:-moz-placeholder-shown {
105725
+ text-overflow: ellipsis;
105726
+ }
105727
+
105728
+ :host input[part="input"]:placeholder-shown {
105729
+ text-overflow: ellipsis;
105730
+ }
105731
+
105329
105732
  :host [part="label"] {
105330
105733
  -webkit-user-select: none;
105331
105734
  -moz-user-select: none;
@@ -105333,6 +105736,7 @@ function KW() {
105333
105736
  pointer-events: none;
105334
105737
  transform-origin: 0 0;
105335
105738
  text-align: left;
105739
+ max-inline-size: calc(100% - var(--richtextbox-padding-left) - var(--richtextbox-padding-right));
105336
105740
  text-overflow: ellipsis;
105337
105741
  white-space: nowrap;
105338
105742
  will-change: transform;
@@ -105575,6 +105979,18 @@ function qW() {
105575
105979
  transition-property: inherit;
105576
105980
  }
105577
105981
 
105982
+ :host input[part="input"] {
105983
+ min-inline-size: 0;
105984
+ }
105985
+
105986
+ :host input[part="input"]:-moz-placeholder-shown {
105987
+ text-overflow: ellipsis;
105988
+ }
105989
+
105990
+ :host input[part="input"]:placeholder-shown {
105991
+ text-overflow: ellipsis;
105992
+ }
105993
+
105578
105994
  :host [part="label"] {
105579
105995
  -webkit-user-select: none;
105580
105996
  -moz-user-select: none;
@@ -105582,6 +105998,7 @@ function qW() {
105582
105998
  pointer-events: none;
105583
105999
  transform-origin: 0 0;
105584
106000
  text-align: left;
106001
+ max-inline-size: calc(100% - var(--richtextbox-padding-left) - var(--richtextbox-padding-right));
105585
106002
  text-overflow: ellipsis;
105586
106003
  white-space: nowrap;
105587
106004
  will-change: transform;
@@ -106056,6 +106473,18 @@ function JW() {
106056
106473
  transition-property: inherit;
106057
106474
  }
106058
106475
 
106476
+ :host input[part="input"] {
106477
+ min-inline-size: 0;
106478
+ }
106479
+
106480
+ :host input[part="input"]:-moz-placeholder-shown {
106481
+ text-overflow: ellipsis;
106482
+ }
106483
+
106484
+ :host input[part="input"]:placeholder-shown {
106485
+ text-overflow: ellipsis;
106486
+ }
106487
+
106059
106488
  :host [part="label"] {
106060
106489
  -webkit-user-select: none;
106061
106490
  -moz-user-select: none;
@@ -106063,6 +106492,7 @@ function JW() {
106063
106492
  pointer-events: none;
106064
106493
  transform-origin: 0 0;
106065
106494
  text-align: left;
106495
+ max-inline-size: calc(100% - var(--richtextbox-padding-left) - var(--richtextbox-padding-right));
106066
106496
  text-overflow: ellipsis;
106067
106497
  white-space: nowrap;
106068
106498
  will-change: transform;
@@ -115692,9 +116122,9 @@ function zK(e) {
115692
116122
  <slot name="prefix" slot="prefix"></slot>
115693
116123
  ${R(e.hasCustomTrigger, () => I`
115694
116124
  <slot name="trigger" slot="value"></slot>
115695
- `, () => I`
116125
+ `, () => R(e.hasSelectionPresentation, () => I`
115696
116126
  <span part="selection-visuals" slot="value"></span>
115697
- `)}
116127
+ `))}
115698
116128
  <slot name="suffix" slot="suffix"></slot>
115699
116129
  <mosaik-button part="caret"
115700
116130
  slot="suffix"
@@ -120173,6 +120603,18 @@ function Lq() {
120173
120603
  position: relative;
120174
120604
  }
120175
120605
 
120606
+ :host input[part="input"] {
120607
+ min-inline-size: 0;
120608
+ }
120609
+
120610
+ :host input[part="input"]:-moz-placeholder-shown {
120611
+ text-overflow: ellipsis;
120612
+ }
120613
+
120614
+ :host input[part="input"]:placeholder-shown {
120615
+ text-overflow: ellipsis;
120616
+ }
120617
+
120176
120618
  :host [part="label"] {
120177
120619
  -webkit-user-select: none;
120178
120620
  -moz-user-select: none;
@@ -120180,6 +120622,7 @@ function Lq() {
120180
120622
  pointer-events: none;
120181
120623
  transform-origin: 0 0;
120182
120624
  text-align: left;
120625
+ max-inline-size: calc(100% - var(--timebox-padding-left) - var(--timebox-padding-right));
120183
120626
  text-overflow: ellipsis;
120184
120627
  white-space: nowrap;
120185
120628
  will-change: transform;
@@ -120432,6 +120875,18 @@ function Rq() {
120432
120875
  position: relative;
120433
120876
  }
120434
120877
 
120878
+ :host input[part="input"] {
120879
+ min-inline-size: 0;
120880
+ }
120881
+
120882
+ :host input[part="input"]:-moz-placeholder-shown {
120883
+ text-overflow: ellipsis;
120884
+ }
120885
+
120886
+ :host input[part="input"]:placeholder-shown {
120887
+ text-overflow: ellipsis;
120888
+ }
120889
+
120435
120890
  :host [part="label"] {
120436
120891
  -webkit-user-select: none;
120437
120892
  -moz-user-select: none;
@@ -120439,6 +120894,7 @@ function Rq() {
120439
120894
  pointer-events: none;
120440
120895
  transform-origin: 0 0;
120441
120896
  text-align: left;
120897
+ max-inline-size: calc(100% - var(--timebox-padding-left) - var(--timebox-padding-right));
120442
120898
  text-overflow: ellipsis;
120443
120899
  white-space: nowrap;
120444
120900
  will-change: transform;
@@ -120891,6 +121347,18 @@ function zq() {
120891
121347
  position: relative;
120892
121348
  }
120893
121349
 
121350
+ :host input[part="input"] {
121351
+ min-inline-size: 0;
121352
+ }
121353
+
121354
+ :host input[part="input"]:-moz-placeholder-shown {
121355
+ text-overflow: ellipsis;
121356
+ }
121357
+
121358
+ :host input[part="input"]:placeholder-shown {
121359
+ text-overflow: ellipsis;
121360
+ }
121361
+
120894
121362
  :host [part="label"] {
120895
121363
  -webkit-user-select: none;
120896
121364
  -moz-user-select: none;
@@ -120898,6 +121366,7 @@ function zq() {
120898
121366
  pointer-events: none;
120899
121367
  transform-origin: 0 0;
120900
121368
  text-align: left;
121369
+ max-inline-size: calc(100% - var(--timebox-padding-left) - var(--timebox-padding-right));
120901
121370
  text-overflow: ellipsis;
120902
121371
  white-space: nowrap;
120903
121372
  will-change: transform;
@@ -146056,9 +146525,22 @@ var Xfe = function(e, t, n, r) {
146056
146525
  else for (var s = e.length - 1; s >= 0; s--) (o = e[s]) && (a = (i < 3 ? o(a) : i > 3 ? o(t, n, a) : o(t, n)) || a);
146057
146526
  return i > 3 && a && Object.defineProperty(t, n, a), a;
146058
146527
  }, c1 = class extends CU {
146528
+ _inheritance = wx(this, { context: Q$ });
146059
146529
  static get is() {
146060
146530
  return "mosaik-chat-prompt-box";
146061
146531
  }
146532
+ get variant() {
146533
+ return this._inheritance.get("variant", super.variant);
146534
+ }
146535
+ set variant(e) {
146536
+ this._inheritance.markExplicit("variant"), super.variant = e;
146537
+ }
146538
+ get appearance() {
146539
+ return this._inheritance.get("appearance", super.appearance);
146540
+ }
146541
+ set appearance(e) {
146542
+ this._inheritance.markExplicit("appearance"), super.appearance = e;
146543
+ }
146062
146544
  };
146063
146545
  c1 = Xfe([L({
146064
146546
  selector: "mosaik-chat-prompt-box",
@@ -146615,7 +147097,7 @@ var d1 = function(e, t, n, r) {
146615
147097
  this.releaseMessageResizeObservations(), super.disconnectedCallback();
146616
147098
  }
146617
147099
  onSlotChanges(e) {
146618
- super.onSlotChanges(e), e === "input" && (this._promptBoxElement = this.getSlotAssignmentsOf("input", c1).at(0), this._promptBoxElement && (this._promptBoxElement.dir = this.dir, this._promptBoxElement.variant = this.variant, this._promptBoxElement.appearance = this.appearance, this._promptBoxElement.placeholder = this.intl.inputPlaceholder)), (e === void 0 || e === "message") && (this.syncObservedMessageElements(), this.hasUpdated && this.begin === W$.End && this.scrollToEnd && this._isScrollEndAnchored && this.scrollMessagesToEnd(!0));
147100
+ super.onSlotChanges(e), e === "input" && (this._promptBoxElement = this.getSlotAssignmentsOf("input", c1).at(0), this._promptBoxElement && (this._promptBoxElement.dir = this.dir, this._promptBoxElement.placeholder = this.intl.inputPlaceholder)), (e === void 0 || e === "message") && (this.syncObservedMessageElements(), this.hasUpdated && this.begin === W$.End && this.scrollToEnd && this._isScrollEndAnchored && this.scrollMessagesToEnd(!0));
146619
147101
  }
146620
147102
  handleMessagesScroll(e) {
146621
147103
  Number.isFinite(e) && (this._scrollEndDistance = Math.max(0, e), this._isScrollEndAnchored = this._scrollEndDistance <= this.scrollToEndThreshold);
@@ -148175,9 +148657,22 @@ var fpe = function(e, t, n, r) {
148175
148657
  else for (var s = e.length - 1; s >= 0; s--) (o = e[s]) && (a = (i < 3 ? o(a) : i > 3 ? o(t, n, a) : o(t, n)) || a);
148176
148658
  return i > 3 && a && Object.defineProperty(t, n, a), a;
148177
148659
  }, C1 = class extends FU {
148660
+ _inheritance = wx(this, { context: Q$ });
148178
148661
  static get is() {
148179
148662
  return "mosaik-chat-prompt-box-attachment-list";
148180
148663
  }
148664
+ get variant() {
148665
+ return this._inheritance.get("variant", super.variant);
148666
+ }
148667
+ set variant(e) {
148668
+ this._inheritance.markExplicit("variant"), super.variant = e;
148669
+ }
148670
+ get appearance() {
148671
+ return this._inheritance.get("appearance", super.appearance);
148672
+ }
148673
+ set appearance(e) {
148674
+ this._inheritance.markExplicit("appearance"), super.appearance = e;
148675
+ }
148181
148676
  };
148182
148677
  C1 = fpe([L({
148183
148678
  selector: "mosaik-chat-prompt-box-attachment-list",
@@ -200769,13 +201264,14 @@ function bxe(e) {
200769
201264
  .textAlign="${e.textAlign}"
200770
201265
  ?disabled="${e.disabled}"
200771
201266
  @click="${() => e.open()}"
200772
- @input="${(t) => e.onEditorInput(t)}">
201267
+ @input="${(t) => e.onEditorInput(t)}"
201268
+ @cleared="${() => e.clear()}">
200773
201269
  <slot name="prefix" slot="prefix"></slot>
200774
201270
  ${R(e.hasCustomTrigger, () => I`
200775
201271
  <slot name="trigger" slot="value"></slot>
200776
- `, () => I`
201272
+ `, () => R(e.hasSelectionPresentation, () => I`
200777
201273
  <span part="selection-visuals" slot="value"></span>
200778
- `)}
201274
+ `))}
200779
201275
  <slot name="suffix" slot="suffix"></slot>
200780
201276
  <mosaik-button part="icon"
200781
201277
  slot="suffix"
@@ -200847,22 +201343,14 @@ function xxe(e) {
200847
201343
  `)}
200848
201344
  </slot>
200849
201345
  <slot name="checkmark">
200850
- ${cb(e.parent.selectionMode, [
200851
- ["none", () => I`
200852
- `],
200853
- ["single", () => I`
200854
- `],
200855
- ["multiple", () => I`
200856
201346
  ${R(e.isChecked, () => I`
200857
- <mosaik-checkmark part="checkmark"
201347
+ <mosaik-checkmark part="checkmark"
200858
201348
  .appearance="${"plain"}"
200859
201349
  .variant="${e.variant}"
200860
201350
  .type="${"hook"}"
200861
201351
  ?checked="${e.isChecked}"
200862
201352
  ?disabled="${e.disabled}"></mosaik-checkmark>
200863
201353
  `)}
200864
- `]
200865
- ])}
200866
201354
  </slot>
200867
201355
  <slot name="end"></slot>
200868
201356
  `;
@@ -200881,19 +201369,19 @@ function Sxe() {
200881
201369
  --combo-item-focus-ring-color: var(--cosmopolitan-color-light-secondary-400);
200882
201370
  --combo-item-focus-ring-inward-offset: 2px;
200883
201371
  --combo-item-focus-ring-outward-offset: 2px;
200884
- --combo-item-font-family: unset;
200885
- --combo-item-font-letter-spacing: unset;
200886
- --combo-item-font-line-height: unset;
200887
- --combo-item-font-size: unset;
200888
- --combo-item-font-text-decoration: unset;
200889
- --combo-item-font-text-transform: unset;
200890
- --combo-item-font-weight: unset;
201372
+ --combo-item-font-family: var(--cosmopolitan-font-family);
201373
+ --combo-item-font-letter-spacing: var(--cosmopolitan-typography-body2-letter-spacing);
201374
+ --combo-item-font-line-height: var(--cosmopolitan-typography-body2-line-height);
201375
+ --combo-item-font-size: 16px;
201376
+ --combo-item-font-text-decoration: var(--cosmopolitan-typography-body2-text-decoration);
201377
+ --combo-item-font-text-transform: var(--cosmopolitan-typography-body2-text-transform);
201378
+ --combo-item-font-weight: normal;
200891
201379
  --combo-item-foreground-color: unset;
200892
- --combo-item-gap: unset;
200893
- --combo-item-padding-bottom: unset;
200894
- --combo-item-padding-left: unset;
200895
- --combo-item-padding-right: unset;
200896
- --combo-item-padding-top: unset;
201380
+ --combo-item-gap: 8px;
201381
+ --combo-item-padding-bottom: 8px;
201382
+ --combo-item-padding-left: 16px;
201383
+ --combo-item-padding-right: 16px;
201384
+ --combo-item-padding-top: 8px;
200897
201385
  --combo-item-ripple-color: var(--cosmopolitan-color-light-secondary-200);
200898
201386
  --combo-item-ripple-duration: .2s;
200899
201387
  --combo-item-shadow: unset unset unset unset unset;
@@ -200902,9 +201390,9 @@ function Sxe() {
200902
201390
  --combo-item-shadow-offset-x: unset;
200903
201391
  --combo-item-shadow-offset-y: unset;
200904
201392
  --combo-item-shadow-spread: unset;
200905
- --combo-item-transition-duration: unset;
200906
- --combo-item-transition-mode: unset;
200907
- --combo-item-transition-property: unset;
201393
+ --combo-item-transition-duration: var(--mosaik-duration-short);
201394
+ --combo-item-transition-mode: ease;
201395
+ --combo-item-transition-property: all;
200908
201396
  --combo-item-translate: none;
200909
201397
  }
200910
201398
 
@@ -200951,9 +201439,10 @@ function Sxe() {
200951
201439
  transition-duration: var(--combo-item-transition-duration);
200952
201440
  transition-timing-function: var(--combo-item-transition-mode);
200953
201441
  transition-property: var(--combo-item-transition-property);
200954
- background-color: var(--combo-item-background-color);
200955
- border-color: var(--combo-item-border-color);
201442
+ translate: var(--combo-item-translate);
201443
+ background: var(--combo-item-background-color);
200956
201444
  color: var(--combo-item-foreground-color);
201445
+ border-color: var(--combo-item-border-color);
200957
201446
  border-width: var(--combo-item-border-width);
200958
201447
  border-radius: var(--combo-item-border-radius);
200959
201448
  border-style: var(--combo-item-border-style);
@@ -200964,7 +201453,21 @@ function Sxe() {
200964
201453
  display: flex;
200965
201454
  }
200966
201455
 
200967
- :host(:not([disabled]:not([disabled="false"])):hover) {
201456
+ :host mosaik-text, :host mosaik-icon {
201457
+ color: inherit;
201458
+ font-size: inherit;
201459
+ }
201460
+
201461
+ :host mosaik-icon {
201462
+ flex-shrink: 0;
201463
+ }
201464
+
201465
+ :host slot[name="label"] {
201466
+ flex: 1;
201467
+ display: block;
201468
+ }
201469
+
201470
+ :host(:not([disabled]:not([disabled="false"])):hover:not(:active)) {
200968
201471
  cursor: pointer;
200969
201472
  }
200970
201473
 
@@ -200985,17 +201488,17 @@ function Cxe() {
200985
201488
  --combo-item-focus-ring-inward-offset: 2px;
200986
201489
  --combo-item-focus-ring-outward-offset: 2px;
200987
201490
  --combo-item-font-family: var(--joy-font-family);
200988
- --combo-item-font-letter-spacing: var(--joy-typography-body1-letter-spacing);
200989
- --combo-item-font-line-height: var(--joy-typography-body1-line-height);
200990
- --combo-item-font-size: var(--joy-typography-body1-font-size);
200991
- --combo-item-font-text-decoration: var(--joy-typography-body1-text-decoration);
200992
- --combo-item-font-text-transform: var(--joy-typography-body1-text-transform);
200993
- --combo-item-font-weight: var(--joy-typography-body1-font-weight);
201491
+ --combo-item-font-letter-spacing: var(--joy-typography-body2-letter-spacing);
201492
+ --combo-item-font-line-height: var(--joy-typography-body2-line-height);
201493
+ --combo-item-font-size: var(--joy-typography-body2-font-size);
201494
+ --combo-item-font-text-decoration: var(--joy-typography-body2-text-decoration);
201495
+ --combo-item-font-text-transform: var(--joy-typography-body2-text-transform);
201496
+ --combo-item-font-weight: normal;
200994
201497
  --combo-item-foreground-color: var(--joy-scheme-foreground);
200995
201498
  --combo-item-gap: calc(var(--joy-layout-space) * 3);
200996
201499
  --combo-item-padding-bottom: var(--joy-layout-space);
200997
- --combo-item-padding-left: var(--joy-layout-space);
200998
- --combo-item-padding-right: var(--joy-layout-space);
201500
+ --combo-item-padding-left: calc(var(--joy-layout-space) * 2);
201501
+ --combo-item-padding-right: calc(var(--joy-layout-space) * 2);
200999
201502
  --combo-item-padding-top: var(--joy-layout-space);
201000
201503
  --combo-item-ripple-color: var(--joy-color-light-secondary-200);
201001
201504
  --combo-item-ripple-duration: .2s;
@@ -201007,7 +201510,7 @@ function Cxe() {
201007
201510
  --combo-item-shadow-spread: unset;
201008
201511
  --combo-item-transition-duration: var(--mosaik-duration-short);
201009
201512
  --combo-item-transition-mode: ease;
201010
- --combo-item-transition-property: background-color, color, border-color, opacity, box-shadow;
201513
+ --combo-item-transition-property: all;
201011
201514
  --combo-item-translate: none;
201012
201515
  }
201013
201516
 
@@ -201054,9 +201557,10 @@ function Cxe() {
201054
201557
  transition-duration: var(--combo-item-transition-duration);
201055
201558
  transition-timing-function: var(--combo-item-transition-mode);
201056
201559
  transition-property: var(--combo-item-transition-property);
201057
- background-color: var(--combo-item-background-color);
201058
- border-color: var(--combo-item-border-color);
201560
+ translate: var(--combo-item-translate);
201561
+ background: var(--combo-item-background-color);
201059
201562
  color: var(--combo-item-foreground-color);
201563
+ border-color: var(--combo-item-border-color);
201060
201564
  border-width: var(--combo-item-border-width);
201061
201565
  border-radius: var(--combo-item-border-radius);
201062
201566
  border-style: var(--combo-item-border-style);
@@ -201067,8 +201571,29 @@ function Cxe() {
201067
201571
  display: flex;
201068
201572
  }
201069
201573
 
201070
- :host(:not([disabled]:not([disabled="false"])):hover) {
201574
+ :host mosaik-text, :host mosaik-icon {
201575
+ color: inherit;
201576
+ font-size: inherit;
201577
+ }
201578
+
201579
+ :host mosaik-icon {
201580
+ flex-shrink: 0;
201581
+ }
201582
+
201583
+ :host slot[name="label"] {
201584
+ flex: 1;
201585
+ display: block;
201586
+ }
201587
+
201588
+ :host(:not([disabled]:not([disabled="false"])):hover:not(:active)) {
201071
201589
  cursor: pointer;
201590
+ }
201591
+
201592
+ :host([disabled]:not([disabled="false"])) {
201593
+ --combo-item-foreground-color: var(--joy-scheme-disabled);
201594
+ }
201595
+
201596
+ :host(:not([disabled]:not([disabled="false"])):hover) {
201072
201597
  --combo-item-background-color: var(--joy-scheme-highlight);
201073
201598
  }
201074
201599
 
@@ -201158,9 +201683,10 @@ function wxe() {
201158
201683
  transition-duration: var(--combo-item-transition-duration);
201159
201684
  transition-timing-function: var(--combo-item-transition-mode);
201160
201685
  transition-property: var(--combo-item-transition-property);
201161
- background-color: var(--combo-item-background-color);
201162
- border-color: var(--combo-item-border-color);
201686
+ translate: var(--combo-item-translate);
201687
+ background: var(--combo-item-background-color);
201163
201688
  color: var(--combo-item-foreground-color);
201689
+ border-color: var(--combo-item-border-color);
201164
201690
  border-width: var(--combo-item-border-width);
201165
201691
  border-radius: var(--combo-item-border-radius);
201166
201692
  border-style: var(--combo-item-border-style);
@@ -201171,7 +201697,21 @@ function wxe() {
201171
201697
  display: flex;
201172
201698
  }
201173
201699
 
201174
- :host(:not([disabled]:not([disabled="false"])):hover) {
201700
+ :host mosaik-text, :host mosaik-icon {
201701
+ color: inherit;
201702
+ font-size: inherit;
201703
+ }
201704
+
201705
+ :host mosaik-icon {
201706
+ flex-shrink: 0;
201707
+ }
201708
+
201709
+ :host slot[name="label"] {
201710
+ flex: 1;
201711
+ display: block;
201712
+ }
201713
+
201714
+ :host(:not([disabled]:not([disabled="false"])):hover:not(:active)) {
201175
201715
  cursor: pointer;
201176
201716
  }
201177
201717
 
@@ -201534,7 +202074,7 @@ function Axe() {
201534
202074
  --combo-background-color: unset;
201535
202075
  --combo-border-color: unset;
201536
202076
  --combo-border-radius: unset;
201537
- --combo-border-style: solid;
202077
+ --combo-border-style: unset;
201538
202078
  --combo-border-width: unset;
201539
202079
  --combo-focus-ring-active-width: 8px;
201540
202080
  --combo-focus-ring-color: var(--cosmopolitan-color-light-secondary-400);
@@ -201543,12 +202083,12 @@ function Axe() {
201543
202083
  --combo-font-family: var(--cosmopolitan-font-family);
201544
202084
  --combo-font-letter-spacing: var(--cosmopolitan-typography-body2-letter-spacing);
201545
202085
  --combo-font-line-height: var(--cosmopolitan-typography-body2-line-height);
201546
- --combo-font-size: var(--cosmopolitan-typography-body2-font-size);
202086
+ --combo-font-size: 16px;
201547
202087
  --combo-font-text-decoration: var(--cosmopolitan-typography-body2-text-decoration);
201548
202088
  --combo-font-text-transform: var(--cosmopolitan-typography-body2-text-transform);
201549
- --combo-font-weight: var(--cosmopolitan-typography-body2-font-weight);
201550
- --combo-foreground-color: var(--cosmopolitan-scheme-foreground);
201551
- --combo-gap: unset;
202089
+ --combo-font-weight: normal;
202090
+ --combo-foreground-color: unset;
202091
+ --combo-gap: var(--cosmopolitan-layout-space);
201552
202092
  --combo-padding-bottom: calc(var(--cosmopolitan-layout-space) / 2);
201553
202093
  --combo-padding-left: calc(var(--cosmopolitan-layout-space) * 1.5);
201554
202094
  --combo-padding-right: calc(var(--cosmopolitan-layout-space) * 1.5);
@@ -201561,7 +202101,7 @@ function Axe() {
201561
202101
  --combo-shadow-spread: unset;
201562
202102
  --combo-transition-duration: var(--mosaik-duration-short);
201563
202103
  --combo-transition-mode: ease;
201564
- --combo-transition-property: transform;
202104
+ --combo-transition-property: all;
201565
202105
  --combo-translate: none;
201566
202106
  }
201567
202107
 
@@ -201592,6 +202132,23 @@ function Axe() {
201592
202132
  }
201593
202133
 
201594
202134
  :host {
202135
+ font-family: var(--combo-font-family);
202136
+ font-size: var(--combo-font-size);
202137
+ line-height: var(--combo-font-line-height);
202138
+ font-weight: var(--combo-font-weight);
202139
+ letter-spacing: var(--combo-font-letter-spacing);
202140
+ -webkit-text-decoration: var(--combo-font-text-decoration);
202141
+ text-decoration: var(--combo-font-text-decoration);
202142
+ text-transform: var(--combo-font-text-transform);
202143
+ transition-duration: var(--combo-transition-duration);
202144
+ transition-timing-function: var(--combo-transition-mode);
202145
+ transition-property: var(--combo-transition-property);
202146
+ translate: var(--combo-translate);
202147
+ background: var(--combo-background-color);
202148
+ color: var(--combo-foreground-color);
202149
+ box-shadow: var(--combo-shadow);
202150
+ border-color: var(--combo-border-color);
202151
+ border-radius: var(--combo-border-radius);
201595
202152
  cursor: pointer;
201596
202153
  }
201597
202154
 
@@ -201720,6 +202277,23 @@ function jxe() {
201720
202277
  }
201721
202278
 
201722
202279
  :host {
202280
+ font-family: var(--combo-font-family);
202281
+ font-size: var(--combo-font-size);
202282
+ line-height: var(--combo-font-line-height);
202283
+ font-weight: var(--combo-font-weight);
202284
+ letter-spacing: var(--combo-font-letter-spacing);
202285
+ -webkit-text-decoration: var(--combo-font-text-decoration);
202286
+ text-decoration: var(--combo-font-text-decoration);
202287
+ text-transform: var(--combo-font-text-transform);
202288
+ transition-duration: var(--combo-transition-duration);
202289
+ transition-timing-function: var(--combo-transition-mode);
202290
+ transition-property: var(--combo-transition-property);
202291
+ translate: var(--combo-translate);
202292
+ background: var(--combo-background-color);
202293
+ color: var(--combo-foreground-color);
202294
+ box-shadow: var(--combo-shadow);
202295
+ border-color: var(--combo-border-color);
202296
+ border-radius: var(--combo-border-radius);
201723
202297
  cursor: pointer;
201724
202298
  }
201725
202299
 
@@ -201779,6 +202353,179 @@ function jxe() {
201779
202353
  transform: rotate(180deg);
201780
202354
  }
201781
202355
 
202356
+ :host([appearance="plain"]) {
202357
+ --combo-border-width: 0;
202358
+ --combo-background-color: var(--joy-scheme-transparent);
202359
+ --combo-focus-ring-inward-offset: 0px;
202360
+ --combo-focus-ring-outward-offset: 0px;
202361
+ }
202362
+
202363
+ :host([appearance="plain"]) [part="focusRing"] {
202364
+ --focus-ring-outward-offset: 0px;
202365
+ }
202366
+
202367
+ :host([variant="primary"]:not([disabled]:not([disabled="false"])):not([invalid]):focus) {
202368
+ --combo-border-color: var(--joy-color-primary-500);
202369
+ --combo-focus-ring-color: var(--joy-color-primary-500);
202370
+ }
202371
+
202372
+ :host([variant="primary"]:not([disabled]:not([disabled="false"])):not([invalid]):focus) [part="popup"] {
202373
+ --combo-border-color: var(--joy-color-primary-500);
202374
+ }
202375
+
202376
+ :host([variant="primary"]:not([disabled]:not([disabled="false"])):not([invalid]):hover) {
202377
+ --combo-border-color: var(--joy-color-primary-500);
202378
+ --combo-focus-ring-color: var(--joy-color-primary-500);
202379
+ }
202380
+
202381
+ :host([variant="primary"]:not([disabled]:not([disabled="false"])):not([invalid]):hover) [part="popup"] {
202382
+ --combo-border-color: var(--joy-color-primary-500);
202383
+ }
202384
+
202385
+ :host([variant="secondary"]:not([disabled]:not([disabled="false"])):not([invalid]):focus) {
202386
+ --combo-border-color: var(--joy-color-secondary-500);
202387
+ --combo-focus-ring-color: var(--joy-color-secondary-500);
202388
+ }
202389
+
202390
+ :host([variant="secondary"]:not([disabled]:not([disabled="false"])):not([invalid]):focus) [part="popup"] {
202391
+ --combo-border-color: var(--joy-color-secondary-500);
202392
+ }
202393
+
202394
+ :host([variant="secondary"]:not([disabled]:not([disabled="false"])):not([invalid]):hover) {
202395
+ --combo-border-color: var(--joy-color-secondary-500);
202396
+ --combo-focus-ring-color: var(--joy-color-secondary-500);
202397
+ }
202398
+
202399
+ :host([variant="secondary"]:not([disabled]:not([disabled="false"])):not([invalid]):hover) [part="popup"] {
202400
+ --combo-border-color: var(--joy-color-secondary-500);
202401
+ }
202402
+
202403
+ :host([variant="tertiary"]:not([disabled]:not([disabled="false"])):not([invalid]):focus) {
202404
+ --combo-border-color: var(--joy-color-tertiary-500);
202405
+ --combo-focus-ring-color: var(--joy-color-tertiary-500);
202406
+ }
202407
+
202408
+ :host([variant="tertiary"]:not([disabled]:not([disabled="false"])):not([invalid]):focus) [part="popup"] {
202409
+ --combo-border-color: var(--joy-color-tertiary-500);
202410
+ }
202411
+
202412
+ :host([variant="tertiary"]:not([disabled]:not([disabled="false"])):not([invalid]):hover) {
202413
+ --combo-border-color: var(--joy-color-tertiary-500);
202414
+ --combo-focus-ring-color: var(--joy-color-tertiary-500);
202415
+ }
202416
+
202417
+ :host([variant="tertiary"]:not([disabled]:not([disabled="false"])):not([invalid]):hover) [part="popup"] {
202418
+ --combo-border-color: var(--joy-color-tertiary-500);
202419
+ }
202420
+
202421
+ :host([variant="danger"]:not([disabled]:not([disabled="false"])):not([invalid]):focus) {
202422
+ --combo-border-color: var(--joy-color-danger-500);
202423
+ --combo-focus-ring-color: var(--joy-color-danger-500);
202424
+ }
202425
+
202426
+ :host([variant="danger"]:not([disabled]:not([disabled="false"])):not([invalid]):focus) [part="popup"] {
202427
+ --combo-border-color: var(--joy-color-danger-500);
202428
+ }
202429
+
202430
+ :host([variant="danger"]:not([disabled]:not([disabled="false"])):not([invalid]):hover) {
202431
+ --combo-border-color: var(--joy-color-danger-500);
202432
+ --combo-focus-ring-color: var(--joy-color-danger-500);
202433
+ }
202434
+
202435
+ :host([variant="danger"]:not([disabled]:not([disabled="false"])):not([invalid]):hover) [part="popup"] {
202436
+ --combo-border-color: var(--joy-color-danger-500);
202437
+ }
202438
+
202439
+ :host([variant="warning"]:not([disabled]:not([disabled="false"])):not([invalid]):focus) {
202440
+ --combo-border-color: var(--joy-color-warning-500);
202441
+ --combo-focus-ring-color: var(--joy-color-warning-500);
202442
+ }
202443
+
202444
+ :host([variant="warning"]:not([disabled]:not([disabled="false"])):not([invalid]):focus) [part="popup"] {
202445
+ --combo-border-color: var(--joy-color-warning-500);
202446
+ }
202447
+
202448
+ :host([variant="warning"]:not([disabled]:not([disabled="false"])):not([invalid]):hover) {
202449
+ --combo-border-color: var(--joy-color-warning-500);
202450
+ --combo-focus-ring-color: var(--joy-color-warning-500);
202451
+ }
202452
+
202453
+ :host([variant="warning"]:not([disabled]:not([disabled="false"])):not([invalid]):hover) [part="popup"] {
202454
+ --combo-border-color: var(--joy-color-warning-500);
202455
+ }
202456
+
202457
+ :host([variant="success"]:not([disabled]:not([disabled="false"])):not([invalid]):focus) {
202458
+ --combo-border-color: var(--joy-color-success-500);
202459
+ --combo-focus-ring-color: var(--joy-color-success-500);
202460
+ }
202461
+
202462
+ :host([variant="success"]:not([disabled]:not([disabled="false"])):not([invalid]):focus) [part="popup"] {
202463
+ --combo-border-color: var(--joy-color-success-500);
202464
+ }
202465
+
202466
+ :host([variant="success"]:not([disabled]:not([disabled="false"])):not([invalid]):hover) {
202467
+ --combo-border-color: var(--joy-color-success-500);
202468
+ --combo-focus-ring-color: var(--joy-color-success-500);
202469
+ }
202470
+
202471
+ :host([variant="success"]:not([disabled]:not([disabled="false"])):not([invalid]):hover) [part="popup"] {
202472
+ --combo-border-color: var(--joy-color-success-500);
202473
+ }
202474
+
202475
+ :host([variant="info"]:not([disabled]:not([disabled="false"])):not([invalid]):focus) {
202476
+ --combo-border-color: var(--joy-color-info-500);
202477
+ --combo-focus-ring-color: var(--joy-color-info-500);
202478
+ }
202479
+
202480
+ :host([variant="info"]:not([disabled]:not([disabled="false"])):not([invalid]):focus) [part="popup"] {
202481
+ --combo-border-color: var(--joy-color-info-500);
202482
+ }
202483
+
202484
+ :host([variant="info"]:not([disabled]:not([disabled="false"])):not([invalid]):hover) {
202485
+ --combo-border-color: var(--joy-color-info-500);
202486
+ --combo-focus-ring-color: var(--joy-color-info-500);
202487
+ }
202488
+
202489
+ :host([variant="info"]:not([disabled]:not([disabled="false"])):not([invalid]):hover) [part="popup"] {
202490
+ --combo-border-color: var(--joy-color-info-500);
202491
+ }
202492
+
202493
+ :host([variant="highlight"]:not([disabled]:not([disabled="false"])):not([invalid]):focus) {
202494
+ --combo-border-color: var(--joy-color-highlight-500);
202495
+ --combo-focus-ring-color: var(--joy-color-highlight-500);
202496
+ }
202497
+
202498
+ :host([variant="highlight"]:not([disabled]:not([disabled="false"])):not([invalid]):focus) [part="popup"] {
202499
+ --combo-border-color: var(--joy-color-highlight-500);
202500
+ }
202501
+
202502
+ :host([variant="highlight"]:not([disabled]:not([disabled="false"])):not([invalid]):hover) {
202503
+ --combo-border-color: var(--joy-color-highlight-500);
202504
+ --combo-focus-ring-color: var(--joy-color-highlight-500);
202505
+ }
202506
+
202507
+ :host([variant="highlight"]:not([disabled]:not([disabled="false"])):not([invalid]):hover) [part="popup"] {
202508
+ --combo-border-color: var(--joy-color-highlight-500);
202509
+ }
202510
+
202511
+ :host([variant="neutral"]:not([disabled]:not([disabled="false"])):not([invalid]):focus) {
202512
+ --combo-border-color: var(--joy-color-neutral-500);
202513
+ --combo-focus-ring-color: var(--joy-color-neutral-500);
202514
+ }
202515
+
202516
+ :host([variant="neutral"]:not([disabled]:not([disabled="false"])):not([invalid]):focus) [part="popup"] {
202517
+ --combo-border-color: var(--joy-color-neutral-500);
202518
+ }
202519
+
202520
+ :host([variant="neutral"]:not([disabled]:not([disabled="false"])):not([invalid]):hover) {
202521
+ --combo-border-color: var(--joy-color-neutral-500);
202522
+ --combo-focus-ring-color: var(--joy-color-neutral-500);
202523
+ }
202524
+
202525
+ :host([variant="neutral"]:not([disabled]:not([disabled="false"])):not([invalid]):hover) [part="popup"] {
202526
+ --combo-border-color: var(--joy-color-neutral-500);
202527
+ }
202528
+
201782
202529
  `;
201783
202530
  }
201784
202531
  //#endregion
@@ -201786,11 +202533,11 @@ function jxe() {
201786
202533
  function Mxe() {
201787
202534
  return F`
201788
202535
  :host {
201789
- --combo-background-color: unset;
201790
- --combo-border-color: unset;
201791
- --combo-border-radius: unset;
202536
+ --combo-background-color: var(--memphis-scheme-background);
202537
+ --combo-border-color: var(--memphis-color-light-secondary-400);
202538
+ --combo-border-radius: calc(var(--memphis-layout-radius) * 1.5);
201792
202539
  --combo-border-style: solid;
201793
- --combo-border-width: unset;
202540
+ --combo-border-width: var(--memphis-layout-thickness);
201794
202541
  --combo-focus-ring-active-width: 8px;
201795
202542
  --combo-focus-ring-color: var(--memphis-color-light-secondary-400);
201796
202543
  --combo-focus-ring-inward-offset: 2px;
@@ -201803,7 +202550,7 @@ function Mxe() {
201803
202550
  --combo-font-text-transform: var(--memphis-typography-body2-text-transform);
201804
202551
  --combo-font-weight: var(--memphis-typography-body2-font-weight);
201805
202552
  --combo-foreground-color: var(--memphis-scheme-foreground);
201806
- --combo-gap: var(--memphis-layout-space);
202553
+ --combo-gap: calc(var(--memphis-layout-space) / 2);
201807
202554
  --combo-padding-bottom: calc(var(--memphis-layout-space) / 2);
201808
202555
  --combo-padding-left: calc(var(--memphis-layout-space) * 1.5);
201809
202556
  --combo-padding-right: calc(var(--memphis-layout-space) * 1.5);
@@ -201816,7 +202563,7 @@ function Mxe() {
201816
202563
  --combo-shadow-spread: unset;
201817
202564
  --combo-transition-duration: var(--mosaik-duration-short);
201818
202565
  --combo-transition-mode: ease;
201819
- --combo-transition-property: transform;
202566
+ --combo-transition-property: background-color, color, border-color, box-shadow, transform;
201820
202567
  --combo-translate: none;
201821
202568
  }
201822
202569
 
@@ -201847,6 +202594,23 @@ function Mxe() {
201847
202594
  }
201848
202595
 
201849
202596
  :host {
202597
+ font-family: var(--combo-font-family);
202598
+ font-size: var(--combo-font-size);
202599
+ line-height: var(--combo-font-line-height);
202600
+ font-weight: var(--combo-font-weight);
202601
+ letter-spacing: var(--combo-font-letter-spacing);
202602
+ -webkit-text-decoration: var(--combo-font-text-decoration);
202603
+ text-decoration: var(--combo-font-text-decoration);
202604
+ text-transform: var(--combo-font-text-transform);
202605
+ transition-duration: var(--combo-transition-duration);
202606
+ transition-timing-function: var(--combo-transition-mode);
202607
+ transition-property: var(--combo-transition-property);
202608
+ translate: var(--combo-translate);
202609
+ background: var(--combo-background-color);
202610
+ color: var(--combo-foreground-color);
202611
+ box-shadow: var(--combo-shadow);
202612
+ border-color: var(--combo-border-color);
202613
+ border-radius: var(--combo-border-radius);
201850
202614
  cursor: pointer;
201851
202615
  }
201852
202616
 
@@ -201906,34 +202670,45 @@ function Mxe() {
201906
202670
  transform: rotate(180deg);
201907
202671
  }
201908
202672
 
201909
- :host {
201910
- font-family: var(--combo-font-family);
201911
- font-size: var(--combo-font-size);
201912
- line-height: var(--combo-font-line-height);
201913
- font-weight: var(--combo-font-weight);
201914
- letter-spacing: var(--combo-font-letter-spacing);
201915
- -webkit-text-decoration: var(--combo-font-text-decoration);
201916
- text-decoration: var(--combo-font-text-decoration);
201917
- text-transform: var(--combo-font-text-transform);
201918
- padding-top: var(--combo-padding-top);
201919
- padding-right: var(--combo-padding-right);
201920
- padding-bottom: var(--combo-padding-bottom);
201921
- padding-left: var(--combo-padding-left);
201922
- color: var(--combo-foreground-color);
201923
- transition-duration: var(--combo-transition-duration);
201924
- transition-timing-function: var(--combo-transition-mode);
201925
- transition-property: var(--combo-transition-property);
201926
- translate: var(--combo-translate);
201927
- }
201928
-
201929
202673
  :host [part="focusRing"] {
201930
202674
  --focus-ring-inward-offset: var(--combo-focus-ring-inward-offset);
201931
202675
  --focus-ring-outward-offset: var(--combo-focus-ring-outward-offset);
201932
202676
  --focus-ring-border-color: var(--combo-focus-ring-color);
201933
202677
  }
201934
202678
 
202679
+ :host([appearance="plain"]) {
202680
+ --combo-border-width: 0;
202681
+ --combo-background-color: var(--memphis-scheme-transparent);
202682
+ }
202683
+
202684
+ :host([appearance="plain"]) [part="focusRing"] {
202685
+ --focus-ring-inward-offset: 0px;
202686
+ --focus-ring-outward-offset: 0px;
202687
+ }
202688
+
201935
202689
  :host(:not([disabled]:not([disabled="false"])):hover) {
201936
- --combo-translate: translateY(-1px);
202690
+ --combo-border-color: var(--memphis-color-secondary-300);
202691
+ }
202692
+
202693
+ :host(:not([disabled]:not([disabled="false"])):focus-within) {
202694
+ --combo-border-color: var(--memphis-color-secondary-400);
202695
+ }
202696
+
202697
+ :host([is-drop-down-open]) {
202698
+ --combo-border-color: var(--memphis-color-secondary-500);
202699
+ }
202700
+
202701
+ :host([invalid]:not([disabled]:not([disabled="false"]))) {
202702
+ --combo-border-color: var(--memphis-color-danger-500);
202703
+ --combo-foreground-color: var(--memphis-color-danger-500);
202704
+ }
202705
+
202706
+ :host([invalid]:not([disabled]:not([disabled="false"]))) [part="focusRing"] {
202707
+ --focus-ring-border-color: var(--memphis-color-danger-500);
202708
+ }
202709
+
202710
+ :host([invalid]:not([disabled]:not([disabled="false"]))) [part="popup"] {
202711
+ --combo-border-color: var(--memphis-color-danger-500);
201937
202712
  }
201938
202713
 
201939
202714
  `;
@@ -202032,6 +202807,9 @@ var F8 = function(e, t, n, r) {
202032
202807
  get hasCustomTrigger() {
202033
202808
  return this.hasSlotContent("trigger");
202034
202809
  }
202810
+ get hasSelectionPresentation() {
202811
+ return this.hasCustomTrigger || this.selectedItems.length > 0;
202812
+ }
202035
202813
  get isEmpty() {
202036
202814
  return this.items.length === 0 || !this.items.some((e) => !e.hidden);
202037
202815
  }