@wistia/ui 0.18.0-beta.9dd31b7e.fa98d59 → 0.18.0-beta.b72a6689.644eb3c

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.mjs CHANGED
@@ -1,6 +1,6 @@
1
1
 
2
2
  /*
3
- * @license @wistia/ui v0.18.0-beta.9dd31b7e.fa98d59
3
+ * @license @wistia/ui v0.18.0-beta.b72a6689.644eb3c
4
4
  *
5
5
  * Copyright (c) 2024-2025, Wistia, Inc. and its affiliates.
6
6
  *
@@ -14840,7 +14840,6 @@ var FormField = ({
14840
14840
  id: computedId,
14841
14841
  label: isIntegratedLabel ? label : void 0,
14842
14842
  "aria-describedby": ariaDescribedby,
14843
- "aria-invalid": isNotNil28(computedError),
14844
14843
  ...props
14845
14844
  };
14846
14845
  if (isUndefined4(value) && isNotUndefined12(defaultValue)) {
@@ -14862,7 +14861,8 @@ var FormField = ({
14862
14861
  childProps = {
14863
14862
  ...childProps,
14864
14863
  name: computedName,
14865
- onChange: handleChange
14864
+ onChange: handleChange,
14865
+ "aria-invalid": isNotNil28(error)
14866
14866
  };
14867
14867
  }
14868
14868
  Children10.only(children);