@descope/web-components-ui 3.18.1 → 3.18.3

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.
@@ -16803,7 +16803,14 @@ class RawFilterClass extends BaseClass$3 {
16803
16803
  display: block;
16804
16804
  }
16805
16805
 
16806
-
16806
+ /* Block (not the attachment's own inline-block) so host width set from
16807
+ outside (e.g. container items-grow) flows down to the trigger button;
16808
+ anchored's flex-grow on the anchor carries it the rest of the way. */
16809
+ .attachment {
16810
+ display: block;
16811
+ }
16812
+
16813
+
16807
16814
  .hidden {
16808
16815
  display: none;
16809
16816
  }
@@ -24509,6 +24516,14 @@ const buttonSelectionGroupMixin = (superclass) =>
24509
24516
 
24510
24517
  this.inputElement = this.shadowRoot.querySelector(componentName$s);
24511
24518
 
24519
+ // the inner *-internal dispatches a non-bubbling, non-composed `change`,
24520
+ // which never reaches the flow runtime. Re-emit standard input/change from
24521
+ // the host (bubbling + composed) so flow real-time conditions fire.
24522
+ this.inputElement.addEventListener('change', () => {
24523
+ this.dispatchEvent(new Event('input', { bubbles: true, composed: true }));
24524
+ this.dispatchEvent(new Event('change', { bubbles: true, composed: true }));
24525
+ });
24526
+
24512
24527
  forwardAttrs$1(this, this.inputElement, {
24513
24528
  includeAttrs: ['size', 'default-value', 'allow-deselect'],
24514
24529
  });
@@ -24697,6 +24712,14 @@ const buttonMultiSelectionGroupMixin = (superclass) =>
24697
24712
 
24698
24713
  this.inputElement = this.shadowRoot.querySelector(componentName$q);
24699
24714
 
24715
+ // the inner *-internal dispatches a non-bubbling, non-composed `change`,
24716
+ // which never reaches the flow runtime. Re-emit standard input/change from
24717
+ // the host (bubbling + composed) so flow real-time conditions fire.
24718
+ this.inputElement.addEventListener('change', () => {
24719
+ this.dispatchEvent(new Event('input', { bubbles: true, composed: true }));
24720
+ this.dispatchEvent(new Event('change', { bubbles: true, composed: true }));
24721
+ });
24722
+
24700
24723
  forwardAttrs$1(this, this.inputElement, {
24701
24724
  includeAttrs: ['size', 'default-values', 'min-items-selection', 'max-items-selection'],
24702
24725
  });
@@ -27355,6 +27378,15 @@ const RadioGroupMixin = (superclass) =>
27355
27378
 
27356
27379
  this.inputElement = this.baseElement;
27357
27380
 
27381
+ // vaadin-radio-group emits `value-changed` on selection but no native
27382
+ // input/change events. Re-emit standard input/change from the host
27383
+ // (bubbling + composed) so flow real-time conditions fire, matching how
27384
+ // proxyInputMixin bridges input/change for other fields.
27385
+ this.baseElement.addEventListener('value-changed', () => {
27386
+ this.dispatchEvent(new Event('input', { bubbles: true, composed: true }));
27387
+ this.dispatchEvent(new Event('change', { bubbles: true, composed: true }));
27388
+ });
27389
+
27358
27390
  this.renderItems();
27359
27391
 
27360
27392
  observeAttributes$1(this, this.renderItems.bind(this), { includeAttrs: ['data'] });