@wistia/ui 0.19.1 → 0.19.2-beta.9b7ae93c.21c9d56

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
@@ -471,6 +471,11 @@ type ActionButtonProps = {
471
471
  * Disables the button
472
472
  */
473
473
  disabled?: boolean;
474
+ /**
475
+ * @ignore
476
+ * Force a button into a particular css state (for debugging)
477
+ */
478
+ forceState?: 'focus' | 'hover' | undefined;
474
479
  /**
475
480
  * Set the [color scheme](../?path=/docs/docs-color-schemes--docs) of the `ActionButton` when hovered. By default, it will inherit the `colorScheme` prop.
476
481
  */
@@ -499,6 +504,11 @@ declare const ActionButton: react.ForwardRefExoticComponent<(Omit<{
499
504
  * Disables the button
500
505
  */
501
506
  disabled?: boolean;
507
+ /**
508
+ * @ignore
509
+ * Force a button into a particular css state (for debugging)
510
+ */
511
+ forceState?: "focus" | "hover" | undefined;
502
512
  /**
503
513
  * Set the [color scheme](../?path=/docs/docs-color-schemes--docs) of the `ActionButton` when hovered. By default, it will inherit the `colorScheme` prop.
504
514
  */
@@ -523,6 +533,11 @@ declare const ActionButton: react.ForwardRefExoticComponent<(Omit<{
523
533
  * Disables the button
524
534
  */
525
535
  disabled?: boolean;
536
+ /**
537
+ * @ignore
538
+ * Force a button into a particular css state (for debugging)
539
+ */
540
+ forceState?: "focus" | "hover" | undefined;
526
541
  /**
527
542
  * Set the [color scheme](../?path=/docs/docs-color-schemes--docs) of the `ActionButton` when hovered. By default, it will inherit the `colorScheme` prop.
528
543
  */
package/dist/index.d.ts CHANGED
@@ -471,6 +471,11 @@ type ActionButtonProps = {
471
471
  * Disables the button
472
472
  */
473
473
  disabled?: boolean;
474
+ /**
475
+ * @ignore
476
+ * Force a button into a particular css state (for debugging)
477
+ */
478
+ forceState?: 'focus' | 'hover' | undefined;
474
479
  /**
475
480
  * Set the [color scheme](../?path=/docs/docs-color-schemes--docs) of the `ActionButton` when hovered. By default, it will inherit the `colorScheme` prop.
476
481
  */
@@ -499,6 +504,11 @@ declare const ActionButton: react.ForwardRefExoticComponent<(Omit<{
499
504
  * Disables the button
500
505
  */
501
506
  disabled?: boolean;
507
+ /**
508
+ * @ignore
509
+ * Force a button into a particular css state (for debugging)
510
+ */
511
+ forceState?: "focus" | "hover" | undefined;
502
512
  /**
503
513
  * Set the [color scheme](../?path=/docs/docs-color-schemes--docs) of the `ActionButton` when hovered. By default, it will inherit the `colorScheme` prop.
504
514
  */
@@ -523,6 +533,11 @@ declare const ActionButton: react.ForwardRefExoticComponent<(Omit<{
523
533
  * Disables the button
524
534
  */
525
535
  disabled?: boolean;
536
+ /**
537
+ * @ignore
538
+ * Force a button into a particular css state (for debugging)
539
+ */
540
+ forceState?: "focus" | "hover" | undefined;
526
541
  /**
527
542
  * Set the [color scheme](../?path=/docs/docs-color-schemes--docs) of the `ActionButton` when hovered. By default, it will inherit the `colorScheme` prop.
528
543
  */
package/dist/index.mjs CHANGED
@@ -1,6 +1,6 @@
1
1
 
2
2
  /*
3
- * @license @wistia/ui v0.19.1
3
+ * @license @wistia/ui v0.19.2-beta.9b7ae93c.21c9d56
4
4
  *
5
5
  * Copyright (c) 2024-2025, Wistia, Inc. and its affiliates.
6
6
  *
@@ -3363,8 +3363,8 @@ var buttonExtraLargeStyles = css17`
3363
3363
  `;
3364
3364
  var ghostButtonVariant = css17`
3365
3365
  --button-color-bg-override: transparent;
3366
- --button-color-bg-hover: var(--wui-color-bg-surface-hover);
3367
- --button-color-bg-active: var(--wui-color-bg-surface-active);
3366
+ --button-color-bg-hover: var(--wui-color-bg-surface-secondary-hover);
3367
+ --button-color-bg-active: var(--wui-color-bg-surface-secondary-active);
3368
3368
  --button-color-text: var(--wui-color-text-button);
3369
3369
  --button-color-icon: var(--wui-color-icon);
3370
3370
  `;
@@ -3441,12 +3441,15 @@ var buttonBaseStyles = css17`
3441
3441
 
3442
3442
  &:focus-visible,
3443
3443
  &.force-state-focus {
3444
- outline: 2px solid var(--wui-color-focus-ring);
3445
- outline-offset: 2px;
3444
+ --wui-button-focus-color: var(--wui-color-focus-ring);
3445
+
3446
3446
  background: var(--button-color-bg-hover);
3447
+ box-shadow:
3448
+ inset 0 0 0 2px var(--wui-button-focus-color),
3449
+ inset 0 0 0 3px var(--wui-color-bg-app);
3447
3450
 
3448
3451
  &[aria-disabled='true'] {
3449
- outline-color: var(--wui-color-border-disabled);
3452
+ --wui-button-focus-color: var(--wui-color-focus-ring-disabled);
3450
3453
  }
3451
3454
  }
3452
3455
 
@@ -8080,22 +8083,29 @@ var StyledActionButton = styled7(Button)`
8080
8083
  }
8081
8084
 
8082
8085
  &:hover,
8083
- &:focus-visible {
8086
+ &:focus-visible,
8087
+ &.force-state-hover,
8088
+ &.force-state-focus {
8084
8089
  --wui-color-text: var(--wui-color-text-button);
8085
8090
 
8086
8091
  ${({ $hoverColorScheme }) => getColorScheme($hoverColorScheme)};
8087
8092
  background: var(--wui-color-bg-surface-tertiary);
8088
8093
  }
8089
8094
 
8090
- &:focus-visible {
8091
- outline: 2px solid var(--wui-color-focus-ring);
8092
- outline-offset: 2px;
8095
+ &:focus-visible,
8096
+ &.force-state-focus {
8097
+ --wui-action-button-focus-color: var(--wui-color-focus-ring);
8098
+
8099
+ box-shadow:
8100
+ inset 0 0 0 2px var(--wui-action-button-focus-color),
8101
+ inset 0 0 0 3px var(--wui-color-bg-app);
8093
8102
  }
8094
8103
 
8095
8104
  &[aria-disabled='true'] {
8105
+ --wui-action-button-focus-color: var(--wui-color-focus-ring-disabled);
8106
+
8096
8107
  background: var(--wui-color-bg-surface-disabled);
8097
8108
  color: var(--wui-color-text-disabled);
8098
- outline-color: var(--wui-color-focus-ring-disabled);
8099
8109
  cursor: not-allowed;
8100
8110
 
8101
8111
  && {
@@ -8133,7 +8143,9 @@ var StyledSecondaryIcon = styled7.div`
8133
8143
  opacity: 0;
8134
8144
  transform: translateX(-16px);
8135
8145
  ${StyledActionButton}:hover:not([aria-disabled="true"]) &,
8136
- ${StyledActionButton}:focus-visible:not([aria-disabled="true"]) & {
8146
+ ${StyledActionButton}:focus-visible:not([aria-disabled="true"]) &,
8147
+ ${StyledActionButton}.force-state-hover:not([aria-disabled="true"]) &,
8148
+ ${StyledActionButton}.force-state-focus:not([aria-disabled="true"]) & {
8137
8149
  transform: translateX(0);
8138
8150
  opacity: 1;
8139
8151
  }
@@ -8162,6 +8174,7 @@ var ActionButton = forwardRef3(
8162
8174
  icon,
8163
8175
  colorScheme = "standard",
8164
8176
  disabled = false,
8177
+ forceState,
8165
8178
  hoverColorScheme,
8166
8179
  variant = "default",
8167
8180
  children,
@@ -8182,6 +8195,7 @@ var ActionButton = forwardRef3(
8182
8195
  $colorScheme: colorScheme,
8183
8196
  $hoverColorScheme: resolvedHoverColorScheme,
8184
8197
  disabled,
8198
+ forceState,
8185
8199
  unstyled: true,
8186
8200
  children: [
8187
8201
  /* @__PURE__ */ jsx210(StyledMainIcon, { children: icon }),