@wix/app-extensions 1.0.129 → 1.0.130

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.
@@ -19258,11 +19258,13 @@ declare enum A11yAttributes {
19258
19258
  /** The value used for aria-multiline */
19259
19259
  ariaMultiline = "ariaMultiline",
19260
19260
  /** The value used for aria-invalid */
19261
- ariaInvalid = "ariaInvalid"
19261
+ ariaInvalid = "ariaInvalid",
19262
+ /** The value used for lang attribute */
19263
+ lang = "lang"
19262
19264
  }
19263
19265
  /** @enumType */
19264
19266
  /** @internal */
19265
- type A11yAttributesWithLiterals = A11yAttributes | 'Unknown_AriaAttributes' | 'tabIndex' | 'ariaLevel' | 'ariaExpanded' | 'ariaDisabled' | 'ariaAtomic' | 'ariaHidden' | 'ariaBusy' | 'multiline' | 'ariaAutocomplete' | 'ariaPressed' | 'ariaHaspopup' | 'ariaRelevant' | 'role' | 'ariaLive' | 'ariaCurrent' | 'ariaLabel' | 'ariaRoledescription' | 'ariaDescribedby' | 'ariaLabelledby' | 'ariaErrormessage' | 'ariaOwns' | 'ariaControls' | 'tag' | 'ariaMultiline' | 'ariaInvalid';
19267
+ type A11yAttributesWithLiterals = A11yAttributes | 'Unknown_AriaAttributes' | 'tabIndex' | 'ariaLevel' | 'ariaExpanded' | 'ariaDisabled' | 'ariaAtomic' | 'ariaHidden' | 'ariaBusy' | 'multiline' | 'ariaAutocomplete' | 'ariaPressed' | 'ariaHaspopup' | 'ariaRelevant' | 'role' | 'ariaLive' | 'ariaCurrent' | 'ariaLabel' | 'ariaRoledescription' | 'ariaDescribedby' | 'ariaLabelledby' | 'ariaErrormessage' | 'ariaOwns' | 'ariaControls' | 'tag' | 'ariaMultiline' | 'ariaInvalid' | 'lang';
19266
19268
  /** @internal */
19267
19269
  interface Link {
19268
19270
  /**
@@ -2627,6 +2627,7 @@ var A11yAttributes = /* @__PURE__ */ ((A11yAttributes2) => {
2627
2627
  A11yAttributes2["tag"] = "tag";
2628
2628
  A11yAttributes2["ariaMultiline"] = "ariaMultiline";
2629
2629
  A11yAttributes2["ariaInvalid"] = "ariaInvalid";
2630
+ A11yAttributes2["lang"] = "lang";
2630
2631
  return A11yAttributes2;
2631
2632
  })(A11yAttributes || {});
2632
2633
  var LinkType = /* @__PURE__ */ ((LinkType2) => {