@wistia/ui 0.18.0-beta.487a02f2.5478196 → 0.18.0-beta.613e8e53.b4159b2

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.d.mts CHANGED
@@ -673,19 +673,12 @@ type BannerImageProps = ComponentPropsWithoutRef<'div'> & {
673
673
  * Alternative text description of the image for accessibility
674
674
  */
675
675
  alt?: string;
676
- /**
677
- * The aspect ratio that the image should _try_ to maintain.
678
- */
679
- aspectRatio?: 'square' | 'wide' | {
680
- height: number;
681
- width: number;
682
- };
683
676
  /**
684
677
  * Position of the image within the banner layout. Only applies in horizontal orientation.
685
678
  */
686
679
  alignment?: 'left' | 'right';
687
680
  };
688
- declare const BannerImage: ({ alignment, alt, aspectRatio, src, ...props }: BannerImageProps) => react_jsx_runtime.JSX.Element;
681
+ declare const BannerImage: ({ alignment, alt, src, ...props }: BannerImageProps) => react_jsx_runtime.JSX.Element;
689
682
 
690
683
  type UnknownRecord = Record<string, unknown>;
691
684
  type PropsOf<Component extends ElementType> = ComponentPropsWithoutRef<Component>;
package/dist/index.d.ts CHANGED
@@ -673,19 +673,12 @@ type BannerImageProps = ComponentPropsWithoutRef<'div'> & {
673
673
  * Alternative text description of the image for accessibility
674
674
  */
675
675
  alt?: string;
676
- /**
677
- * The aspect ratio that the image should _try_ to maintain.
678
- */
679
- aspectRatio?: 'square' | 'wide' | {
680
- height: number;
681
- width: number;
682
- };
683
676
  /**
684
677
  * Position of the image within the banner layout. Only applies in horizontal orientation.
685
678
  */
686
679
  alignment?: 'left' | 'right';
687
680
  };
688
- declare const BannerImage: ({ alignment, alt, aspectRatio, src, ...props }: BannerImageProps) => react_jsx_runtime.JSX.Element;
681
+ declare const BannerImage: ({ alignment, alt, src, ...props }: BannerImageProps) => react_jsx_runtime.JSX.Element;
689
682
 
690
683
  type UnknownRecord = Record<string, unknown>;
691
684
  type PropsOf<Component extends ElementType> = ComponentPropsWithoutRef<Component>;
package/dist/index.mjs CHANGED
@@ -1,6 +1,6 @@
1
1
 
2
2
  /*
3
- * @license @wistia/ui v0.18.0-beta.487a02f2.5478196
3
+ * @license @wistia/ui v0.18.0-beta.613e8e53.b4159b2
4
4
  *
5
5
  * Copyright (c) 2024-2025, Wistia, Inc. and its affiliates.
6
6
  *
@@ -14870,7 +14870,9 @@ var FormField = ({
14870
14870
  StyledFormField,
14871
14871
  {
14872
14872
  ...props,
14873
+ "aria-labelledby": computedId,
14873
14874
  "data-label-position": labelPosition ?? formState.labelPosition,
14875
+ role: "group",
14874
14876
  children: [
14875
14877
  !isIntegratedLabel && /* @__PURE__ */ jsx283(
14876
14878
  Label,