@wistia/ui 0.11.2 → 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 +8 -8
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.mts +12 -9
- package/dist/index.d.ts +12 -9
- package/dist/index.mjs +8 -8
- package/dist/index.mjs.map +1 -1
- package/package.json +19 -26
package/dist/index.cjs
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
|
|
2
2
|
/*
|
|
3
|
-
* @license @wistia/ui v0.11.
|
|
3
|
+
* @license @wistia/ui v0.11.3
|
|
4
4
|
*
|
|
5
5
|
* Copyright (c) 2024-2025, Wistia, Inc. and its affiliates.
|
|
6
6
|
*
|
|
@@ -273,7 +273,7 @@ var globalStyleAdjustmentsCss = import_styled_components.css`
|
|
|
273
273
|
}
|
|
274
274
|
|
|
275
275
|
/* Anything that has been anchored to should have extra scroll margin */
|
|
276
|
-
|
|
276
|
+
&:target {
|
|
277
277
|
scroll-margin-block: 5ex;
|
|
278
278
|
}
|
|
279
279
|
|
|
@@ -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);
|
|
@@ -8478,7 +8478,7 @@ var ButtonGroupComponent = import_styled_components30.default.div`
|
|
|
8478
8478
|
flex-direction: row;
|
|
8479
8479
|
}
|
|
8480
8480
|
|
|
8481
|
-
|
|
8481
|
+
&:not([data-wistia-ui-icon-button]) {
|
|
8482
8482
|
${mq.smAndDown} {
|
|
8483
8483
|
width: 100%;
|
|
8484
8484
|
}
|
|
@@ -10617,7 +10617,7 @@ Input.displayName = "Input";
|
|
|
10617
10617
|
// src/components/EditableHeading/EditableHeading.tsx
|
|
10618
10618
|
var import_jsx_runtime232 = require("react/jsx-runtime");
|
|
10619
10619
|
var StyledInput = (0, import_styled_components56.default)(Input)`
|
|
10620
|
-
|
|
10620
|
+
&:not([rows]) {
|
|
10621
10621
|
min-height: unset;
|
|
10622
10622
|
}
|
|
10623
10623
|
|