@descope/web-components-ui 1.0.219 → 1.0.221

Sign up to get free protection for your applications and to get access to all the features.
package/dist/index.esm.js CHANGED
@@ -2572,6 +2572,7 @@ class PasscodeInternal extends BaseInputClass$4 {
2572
2572
  input.addEventListener('change', (e) => {
2573
2573
  if (currentInput !== e.target) {
2574
2574
  this.parseInputValue(input);
2575
+ this.dispatchEvent(new Event('input', { bubbles: true, composed: true }));
2575
2576
  }
2576
2577
  });
2577
2578
 
@@ -2710,13 +2711,13 @@ const customMixin$4 = (superclass) =>
2710
2711
  const template = document.createElement('template');
2711
2712
 
2712
2713
  template.innerHTML = `
2713
- <${componentName$i}
2714
- bordered="true"
2715
- name="code"
2716
- tabindex="-1"
2717
- slot="input"
2718
- ><slot></slot></${componentName$i}>
2719
- `;
2714
+ <${componentName$i}
2715
+ bordered="true"
2716
+ name="code"
2717
+ tabindex="-1"
2718
+ slot="input"
2719
+ ><slot></slot></${componentName$i}>
2720
+ `;
2720
2721
 
2721
2722
  this.baseElement.appendChild(template.content.cloneNode(true));
2722
2723