@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.
package/dist/index.esm.js CHANGED
@@ -14399,6 +14399,14 @@ const buttonSelectionGroupMixin = (superclass) =>
14399
14399
 
14400
14400
  this.inputElement = this.shadowRoot.querySelector(componentName$$);
14401
14401
 
14402
+ // the inner *-internal dispatches a non-bubbling, non-composed `change`,
14403
+ // which never reaches the flow runtime. Re-emit standard input/change from
14404
+ // the host (bubbling + composed) so flow real-time conditions fire.
14405
+ this.inputElement.addEventListener('change', () => {
14406
+ this.dispatchEvent(new Event('input', { bubbles: true, composed: true }));
14407
+ this.dispatchEvent(new Event('change', { bubbles: true, composed: true }));
14408
+ });
14409
+
14402
14410
  forwardAttrs(this, this.inputElement, {
14403
14411
  includeAttrs: ['size', 'default-value', 'allow-deselect'],
14404
14412
  });
@@ -14674,6 +14682,14 @@ const buttonMultiSelectionGroupMixin = (superclass) =>
14674
14682
 
14675
14683
  this.inputElement = this.shadowRoot.querySelector(componentName$Y);
14676
14684
 
14685
+ // the inner *-internal dispatches a non-bubbling, non-composed `change`,
14686
+ // which never reaches the flow runtime. Re-emit standard input/change from
14687
+ // the host (bubbling + composed) so flow real-time conditions fire.
14688
+ this.inputElement.addEventListener('change', () => {
14689
+ this.dispatchEvent(new Event('input', { bubbles: true, composed: true }));
14690
+ this.dispatchEvent(new Event('change', { bubbles: true, composed: true }));
14691
+ });
14692
+
14677
14693
  forwardAttrs(this, this.inputElement, {
14678
14694
  includeAttrs: ['size', 'default-values', 'min-items-selection', 'max-items-selection'],
14679
14695
  });
@@ -17844,6 +17860,15 @@ const RadioGroupMixin = (superclass) =>
17844
17860
 
17845
17861
  this.inputElement = this.baseElement;
17846
17862
 
17863
+ // vaadin-radio-group emits `value-changed` on selection but no native
17864
+ // input/change events. Re-emit standard input/change from the host
17865
+ // (bubbling + composed) so flow real-time conditions fire, matching how
17866
+ // proxyInputMixin bridges input/change for other fields.
17867
+ this.baseElement.addEventListener('value-changed', () => {
17868
+ this.dispatchEvent(new Event('input', { bubbles: true, composed: true }));
17869
+ this.dispatchEvent(new Event('change', { bubbles: true, composed: true }));
17870
+ });
17871
+
17847
17872
  this.renderItems();
17848
17873
 
17849
17874
  observeAttributes(this, this.renderItems.bind(this), { includeAttrs: ['data'] });
@@ -31748,7 +31773,14 @@ class RawFilterClass extends BaseClass$1 {
31748
31773
  display: block;
31749
31774
  }
31750
31775
 
31751
-
31776
+ /* Block (not the attachment's own inline-block) so host width set from
31777
+ outside (e.g. container items-grow) flows down to the trigger button;
31778
+ anchored's flex-grow on the anchor carries it the rest of the way. */
31779
+ .attachment {
31780
+ display: block;
31781
+ }
31782
+
31783
+
31752
31784
  .hidden {
31753
31785
  display: none;
31754
31786
  }