@wistia/ui 0.10.9 → 0.10.10-beta.76d7bacc.a6245c2

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.cjs CHANGED
@@ -1,6 +1,6 @@
1
1
 
2
2
  /*
3
- * @license @wistia/ui v0.10.9
3
+ * @license @wistia/ui v0.10.10-beta.76d7bacc.a6245c2
4
4
  *
5
5
  * Copyright (c) 2024-2025, Wistia, Inc. and its affiliates.
6
6
  *
@@ -8196,7 +8196,7 @@ var HeadingComponent = (0, import_react28.forwardRef)(
8196
8196
  $preventUserSelect: preventUserSelect,
8197
8197
  $truncate: truncate,
8198
8198
  $variant: variant,
8199
- as: renderAs ?? variantElementMap[variant],
8199
+ as: renderAs ?? variantElementMap[variant] ?? DEFAULT_ELEMENT2,
8200
8200
  ...props
8201
8201
  }
8202
8202
  )
@@ -8405,7 +8405,7 @@ var TextComponent = (0, import_react29.forwardRef)(
8405
8405
  $prominence: prominence,
8406
8406
  $truncate: truncate,
8407
8407
  $variant: variant,
8408
- as: renderAs ?? variantElementMap2[variant],
8408
+ as: renderAs ?? variantElementMap2[variant] ?? DEFAULT_ELEMENT3,
8409
8409
  ...props
8410
8410
  }
8411
8411
  );
@@ -10362,8 +10362,8 @@ var StyledInputContainer = import_styled_components54.default.div`
10362
10362
  transform: translateY(-50%);
10363
10363
  }
10364
10364
 
10365
- :has(.wui-input-left-icon) input,
10366
- :has(.wui-input-left-icon) textarea {
10365
+ &:has(.wui-input-left-icon) input,
10366
+ &:has(.wui-input-left-icon) textarea {
10367
10367
  padding-left: 32px;
10368
10368
  }
10369
10369
 
@@ -10376,8 +10376,8 @@ var StyledInputContainer = import_styled_components54.default.div`
10376
10376
  transform: translateY(-50%);
10377
10377
  }
10378
10378
 
10379
- :has(.wui-input-right-icon) input,
10380
- :has(.wui-input-right-icon) textarea {
10379
+ &:has(.wui-input-right-icon) input,
10380
+ &:has(.wui-input-right-icon) textarea {
10381
10381
  padding-right: 32px;
10382
10382
  }
10383
10383
  `;