@wistia/ui 0.11.2-beta.feb54855.5f9f8a9 → 0.11.3

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.11.2-beta.feb54855.5f9f8a9
3
+ * @license @wistia/ui v0.11.3
4
4
  *
5
5
  * Copyright (c) 2024-2025, Wistia, Inc. and its affiliates.
6
6
  *
@@ -3091,7 +3091,7 @@ var buttonExtraLargeStyles = import_styled_components18.css`
3091
3091
  --button-label-gap: 8px;
3092
3092
  `;
3093
3093
  var ghostButtonVariant = import_styled_components18.css`
3094
- --button-color-bg: transparent;
3094
+ --button-color-bg-override: transparent;
3095
3095
  --button-color-bg-hover: var(--wui-color-bg-surface-hover);
3096
3096
  --button-color-bg-active: var(--wui-color-bg-surface-active);
3097
3097
  --button-color-text: var(--wui-color-text-button);
@@ -3118,9 +3118,9 @@ var solidButtonVariant = import_styled_components18.css`
3118
3118
  --button-color-icon: var(--wui-color-icon-on-fill);
3119
3119
  `;
3120
3120
  var disabledButtonVariant = import_styled_components18.css`
3121
- --button-color-bg: var(--wui-color-bg-surface-disabled);
3122
- --button-color-bg-hover: var(--wui-color-bg-surface-disabled);
3123
- --button-color-bg-active: var(--wui-color-bg-surface-disabled);
3121
+ --button-color-bg: var(--button-color-bg-override, var(--wui-color-bg-surface-disabled));
3122
+ --button-color-bg-hover: var(--button-color-bg-override, var(--wui-color-bg-surface-disabled));
3123
+ --button-color-bg-active: var(--button-color-bg-override, var(--wui-color-bg-surface-disabled));
3124
3124
  --button-color-text: var(--wui-color-text-disabled);
3125
3125
  --button-color-icon: var(--wui-color-icon-disabled);
3126
3126
  --button-color-border: var(--wui-color-border-disabled);