@wistia/ui 0.13.9 → 0.13.10

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.13.9
3
+ * @license @wistia/ui v0.13.10
4
4
  *
5
5
  * Copyright (c) 2024-2025, Wistia, Inc. and its affiliates.
6
6
  *
@@ -73,6 +73,7 @@ __export(index_exports, {
73
73
  ContextMenu: () => ContextMenu,
74
74
  ContrastControls: () => ContrastControls,
75
75
  DataCard: () => DataCard,
76
+ DataCardHoverArrow: () => DataCardHoverArrow,
76
77
  DataCardTrend: () => DataCardTrend,
77
78
  DataCards: () => DataCards,
78
79
  Divider: () => Divider,
@@ -12284,17 +12285,32 @@ var import_styled_components67 = __toESM(require("styled-components"));
12284
12285
  var import_type_guards37 = require("@wistia/type-guards");
12285
12286
  var import_jsx_runtime253 = require("react/jsx-runtime");
12286
12287
  var StyledDataCard = import_styled_components67.default.div`
12288
+ --wui-data-card-text: var(--wui-color-text-button);
12289
+ --wui-color-text: var(--wui-data-card-text);
12290
+ --wui-data-card-background: var(--wui-color-bg-surface-secondary);
12291
+ --wui-data-card-background-hover: var(--wui-color-bg-surface-secondary-hover);
12292
+ --wui-data-card-background-active: var(--wui-color-bg-surface-secondary-active);
12293
+
12287
12294
  display: grid;
12288
12295
  grid-template-areas: 'label slot' 'value value';
12289
12296
  grid-template-rows: auto auto;
12290
12297
  grid-template-columns: auto auto;
12291
12298
  gap: var(--wui-space-01);
12292
12299
  padding: var(--wui-space-03);
12293
- background: var(--wui-color-bg-surface-secondary);
12300
+ background: var(--wui-data-card-background);
12294
12301
  flex: 1;
12295
12302
  border-radius: var(--wui-border-radius-02);
12296
12303
  position: relative;
12297
- transition: background var(--wui-motion-duration-01) var(--wui-motion-ease);
12304
+ transition:
12305
+ background var(--wui-motion-duration-01) var(--wui-motion-ease),
12306
+ box-shadow var(--wui-motion-duration-01) var(--wui-motion-ease),
12307
+ color var(--wui-motion-duration-01) var(--wui-motion-ease);
12308
+
12309
+ [data-wui-data-card-hover-icon] {
12310
+ opacity: 0;
12311
+ transform: translateX(-16px);
12312
+ transition: all var(--wui-motion-duration-02) var(--wui-motion-ease-out);
12313
+ }
12298
12314
 
12299
12315
  &:has([data-wui-data-card-subtitle]) {
12300
12316
  grid-template-areas: 'label slot' 'value value' 'subtitle subtitle';
@@ -12302,21 +12318,12 @@ var StyledDataCard = import_styled_components67.default.div`
12302
12318
  }
12303
12319
 
12304
12320
  &[data-click-region] {
12305
- [data-wui-data-card-hover-icon] {
12306
- opacity: 0;
12307
- transform: translateX(-16px);
12308
- transition: all var(--wui-motion-duration-02) var(--wui-motion-ease-out);
12309
- }
12310
-
12311
12321
  &:not([disabled]) {
12312
12322
  cursor: pointer;
12313
12323
 
12314
- &:hover,
12315
- &:has([data-click-region-target-button]:focus-visible),
12316
- &:has([data-click-region-target-link]:focus-visible) {
12317
- --wui-color-text: var(--wui-color-text-button);
12318
-
12319
- background: var(--wui-color-bg-surface-secondary-hover);
12324
+ &:hover {
12325
+ --wui-data-card-text: var(--wui-color-text-button);
12326
+ --wui-data-card-background: var(--wui-color-bg-surface-secondary-hover);
12320
12327
 
12321
12328
  [data-wui-data-card-hover-icon] {
12322
12329
  opacity: 1;
@@ -12324,15 +12331,23 @@ var StyledDataCard = import_styled_components67.default.div`
12324
12331
  }
12325
12332
  }
12326
12333
 
12327
- &:has([data-click-region-target-button]:active),
12328
- &:has([data-click-region-target-link]:active) {
12329
- background: var(--wui-color-bg-surface-secondary-active);
12334
+ &:active {
12335
+ --wui-data-card-background: var(--wui-color-bg-surface-secondary-active);
12330
12336
  }
12331
12337
 
12332
12338
  &:has([data-click-region-target-button]:focus-visible),
12333
12339
  &:has([data-click-region-target-link]:focus-visible) {
12334
- outline: 2px solid var(--wui-color-focus-ring);
12335
- outline-offset: 2px;
12340
+ --wui-data-card-focus-ring: var(--wui-color-border);
12341
+
12342
+ box-shadow: inset 0 0 0 2px var(--wui-data-card-focus-ring);
12343
+ }
12344
+
12345
+ &:has([data-click-region-target-button][aria-pressed='true']) {
12346
+ --wui-data-card-text: var(--wui-color-text-selected);
12347
+ --wui-data-card-background: var(--wui-color-bg-surface-selected);
12348
+ --wui-data-card-background-hover: var(--wui-color-bg-surface-selected-hover);
12349
+ --wui-data-card-background-active: var(--wui-color-bg-surface-selected-active);
12350
+ --wui-data-card-focus-ring: var(--wui-color-border-selected);
12336
12351
  }
12337
12352
  }
12338
12353
 
@@ -12434,27 +12449,22 @@ var DataCardInner = ({
12434
12449
  ]
12435
12450
  }
12436
12451
  );
12437
- var DataCardArrowIcon = /* @__PURE__ */ (0, import_jsx_runtime253.jsx)(
12438
- Icon,
12439
- {
12440
- "data-wui-data-card-hover-icon": true,
12441
- type: "arrow-right"
12442
- }
12443
- );
12444
12452
  var DataCard = (props) => {
12445
12453
  const ref = (0, import_react55.useRef)(null);
12446
12454
  if ((0, import_type_guards37.isNotNil)(props.href) || (0, import_type_guards37.isNotNil)(props.onClick)) {
12455
+ const { "aria-pressed": ariaPressed, ...dataCardProps } = props;
12447
12456
  return /* @__PURE__ */ (0, import_jsx_runtime253.jsx)(ClickRegion, { targetRef: ref, children: /* @__PURE__ */ (0, import_jsx_runtime253.jsx)(
12448
12457
  DataCardInner,
12449
12458
  {
12450
- upperRightSlot: props.upperRightSlot ?? DataCardArrowIcon,
12451
- ...props,
12459
+ upperRightSlot: props.upperRightSlot,
12460
+ ...dataCardProps,
12452
12461
  label: /* @__PURE__ */ (0, import_jsx_runtime253.jsx)(
12453
12462
  Button,
12454
12463
  {
12455
12464
  ref,
12456
12465
  ...(0, import_type_guards37.isNotNil)(props.beforeAction) ? { beforeAction: props.beforeAction } : {},
12457
12466
  ...(0, import_type_guards37.isNotNil)(props.reloadDocument) ? { reloadDocument: props.reloadDocument } : {},
12467
+ "aria-pressed": ariaPressed,
12458
12468
  disabled: props.disabled ?? false,
12459
12469
  href: props.href,
12460
12470
  onClick: props.onClick,
@@ -12542,23 +12552,41 @@ var DataCardTrend = ({
12542
12552
  ] });
12543
12553
  };
12544
12554
 
12545
- // src/components/Divider/Divider.tsx
12555
+ // src/components/DataCards/DataCardHoverArrow.tsx
12546
12556
  var import_styled_components70 = __toESM(require("styled-components"));
12547
12557
  var import_jsx_runtime256 = require("react/jsx-runtime");
12548
- var horizontalBorderCss = import_styled_components70.css`
12558
+ var StyledIconContainer = import_styled_components70.default.div`
12559
+ display: flex;
12560
+ align-items: center;
12561
+ align-self: center;
12562
+ height: 0;
12563
+ `;
12564
+ var DataCardHoverArrow = () => /* @__PURE__ */ (0, import_jsx_runtime256.jsx)(StyledIconContainer, { children: /* @__PURE__ */ (0, import_jsx_runtime256.jsx)(
12565
+ Icon,
12566
+ {
12567
+ "data-wui-data-card-hover-icon": true,
12568
+ type: "arrow-right"
12569
+ }
12570
+ ) });
12571
+ DataCardHoverArrow.displayName = "DataCardHoverArrow_UI";
12572
+
12573
+ // src/components/Divider/Divider.tsx
12574
+ var import_styled_components71 = __toESM(require("styled-components"));
12575
+ var import_jsx_runtime257 = require("react/jsx-runtime");
12576
+ var horizontalBorderCss = import_styled_components71.css`
12549
12577
  border-top-color: var(--wui-color-border);
12550
12578
  border-top-style: solid;
12551
12579
  border-top-width: 1px;
12552
12580
  clear: both; /* for horizontal dividers, ensure it clears any floats */
12553
12581
  height: 0;
12554
12582
  `;
12555
- var verticalBorderCss = import_styled_components70.css`
12583
+ var verticalBorderCss = import_styled_components71.css`
12556
12584
  background-color: var(--wui-color-border);
12557
12585
  max-width: 1px;
12558
12586
  min-height: 100%;
12559
12587
  width: 1px;
12560
12588
  `;
12561
- var DividerComponent = import_styled_components70.default.div`
12589
+ var DividerComponent = import_styled_components71.default.div`
12562
12590
  ${({ $orientation }) => {
12563
12591
  switch ($orientation) {
12564
12592
  case "vertical":
@@ -12570,7 +12598,7 @@ var DividerComponent = import_styled_components70.default.div`
12570
12598
  }}
12571
12599
  `;
12572
12600
  var Divider = ({ orientation = "horizontal", ...props }) => {
12573
- return /* @__PURE__ */ (0, import_jsx_runtime256.jsx)(
12601
+ return /* @__PURE__ */ (0, import_jsx_runtime257.jsx)(
12574
12602
  DividerComponent,
12575
12603
  {
12576
12604
  $orientation: orientation,
@@ -12583,10 +12611,10 @@ var Divider = ({ orientation = "horizontal", ...props }) => {
12583
12611
  Divider.displayName = "Divider_UI";
12584
12612
 
12585
12613
  // src/components/EditableHeading/EditableHeading.tsx
12586
- var import_styled_components71 = __toESM(require("styled-components"));
12614
+ var import_styled_components72 = __toESM(require("styled-components"));
12587
12615
  var import_react56 = require("react");
12588
- var import_jsx_runtime257 = require("react/jsx-runtime");
12589
- var StyledInput = (0, import_styled_components71.default)(Input)`
12616
+ var import_jsx_runtime258 = require("react/jsx-runtime");
12617
+ var StyledInput = (0, import_styled_components72.default)(Input)`
12590
12618
  &:not([rows]) {
12591
12619
  min-height: unset;
12592
12620
  }
@@ -12606,7 +12634,7 @@ var StyledInput = (0, import_styled_components71.default)(Input)`
12606
12634
  min-height: ${({ $height }) => `${$height}px`};
12607
12635
  }
12608
12636
  `;
12609
- var editableStyles = import_styled_components71.css`
12637
+ var editableStyles = import_styled_components72.css`
12610
12638
  &:has(+ :focus-within) {
12611
12639
  background: var(--wui-color-bg-surface-hover);
12612
12640
  }
@@ -12616,7 +12644,7 @@ var editableStyles = import_styled_components71.css`
12616
12644
  cursor: pointer;
12617
12645
  }
12618
12646
  `;
12619
- var StyledHeading2 = (0, import_styled_components71.default)(Heading)`
12647
+ var StyledHeading2 = (0, import_styled_components72.default)(Heading)`
12620
12648
  width: 100%;
12621
12649
  border-radius: var(--wui-border-radius-02);
12622
12650
  padding: var(--wui-space-02);
@@ -12671,7 +12699,7 @@ var EditableHeading = ({
12671
12699
  handleSetEditing(false);
12672
12700
  }
12673
12701
  };
12674
- const HeadingComponent2 = /* @__PURE__ */ (0, import_jsx_runtime257.jsx)(
12702
+ const HeadingComponent2 = /* @__PURE__ */ (0, import_jsx_runtime258.jsx)(
12675
12703
  StyledHeading2,
12676
12704
  {
12677
12705
  ref: headingRef,
@@ -12685,7 +12713,7 @@ var EditableHeading = ({
12685
12713
  return HeadingComponent2;
12686
12714
  }
12687
12715
  if (isEditing || __forceEditing) {
12688
- return /* @__PURE__ */ (0, import_jsx_runtime257.jsx)(
12716
+ return /* @__PURE__ */ (0, import_jsx_runtime258.jsx)(
12689
12717
  StyledInput,
12690
12718
  {
12691
12719
  $height: headingHeight,
@@ -12704,9 +12732,9 @@ var EditableHeading = ({
12704
12732
  }
12705
12733
  );
12706
12734
  }
12707
- return /* @__PURE__ */ (0, import_jsx_runtime257.jsxs)(import_jsx_runtime257.Fragment, { children: [
12708
- /* @__PURE__ */ (0, import_jsx_runtime257.jsx)(Tooltip, { content: tooltipText, children: HeadingComponent2 }),
12709
- /* @__PURE__ */ (0, import_jsx_runtime257.jsx)(ScreenReaderOnly, { children: /* @__PURE__ */ (0, import_jsx_runtime257.jsx)(
12735
+ return /* @__PURE__ */ (0, import_jsx_runtime258.jsxs)(import_jsx_runtime258.Fragment, { children: [
12736
+ /* @__PURE__ */ (0, import_jsx_runtime258.jsx)(Tooltip, { content: tooltipText, children: HeadingComponent2 }),
12737
+ /* @__PURE__ */ (0, import_jsx_runtime258.jsx)(ScreenReaderOnly, { children: /* @__PURE__ */ (0, import_jsx_runtime258.jsx)(
12710
12738
  "button",
12711
12739
  {
12712
12740
  "aria-label": ariaLabel,
@@ -12756,9 +12784,9 @@ var useFormState = (action, initialData = {}) => {
12756
12784
  // src/components/Form/FormErrorSummary.tsx
12757
12785
  var import_react58 = require("react");
12758
12786
  var import_type_guards38 = require("@wistia/type-guards");
12759
- var import_jsx_runtime258 = require("react/jsx-runtime");
12787
+ var import_jsx_runtime259 = require("react/jsx-runtime");
12760
12788
  var ErrorItem = ({ name, error, formId }) => {
12761
- return /* @__PURE__ */ (0, import_jsx_runtime258.jsx)("li", { children: /* @__PURE__ */ (0, import_jsx_runtime258.jsx)(Link, { href: `#${formId}-${name}`, children: error }) }, name);
12789
+ return /* @__PURE__ */ (0, import_jsx_runtime259.jsx)("li", { children: /* @__PURE__ */ (0, import_jsx_runtime259.jsx)(Link, { href: `#${formId}-${name}`, children: error }) }, name);
12762
12790
  };
12763
12791
  var FormErrorSummary = ({ description }) => {
12764
12792
  const ref = (0, import_react58.useRef)(null);
@@ -12767,10 +12795,10 @@ var FormErrorSummary = ({ description }) => {
12767
12795
  if (isValid || !hasSubmitted) {
12768
12796
  return null;
12769
12797
  }
12770
- return /* @__PURE__ */ (0, import_jsx_runtime258.jsxs)("div", { ref, children: [
12771
- /* @__PURE__ */ (0, import_jsx_runtime258.jsx)("p", { children: description }),
12772
- /* @__PURE__ */ (0, import_jsx_runtime258.jsx)("ul", { children: Object.entries(errors).filter(([, error]) => (0, import_type_guards38.isNotUndefined)(error)).map(
12773
- ([name, error]) => (0, import_type_guards38.isArray)(error) ? error.map((err) => /* @__PURE__ */ (0, import_jsx_runtime258.jsx)(
12798
+ return /* @__PURE__ */ (0, import_jsx_runtime259.jsxs)("div", { ref, children: [
12799
+ /* @__PURE__ */ (0, import_jsx_runtime259.jsx)("p", { children: description }),
12800
+ /* @__PURE__ */ (0, import_jsx_runtime259.jsx)("ul", { children: Object.entries(errors).filter(([, error]) => (0, import_type_guards38.isNotUndefined)(error)).map(
12801
+ ([name, error]) => (0, import_type_guards38.isArray)(error) ? error.map((err) => /* @__PURE__ */ (0, import_jsx_runtime259.jsx)(
12774
12802
  ErrorItem,
12775
12803
  {
12776
12804
  error: err,
@@ -12778,7 +12806,7 @@ var FormErrorSummary = ({ description }) => {
12778
12806
  name
12779
12807
  },
12780
12808
  err
12781
- )) : /* @__PURE__ */ (0, import_jsx_runtime258.jsx)(
12809
+ )) : /* @__PURE__ */ (0, import_jsx_runtime259.jsx)(
12782
12810
  ErrorItem,
12783
12811
  {
12784
12812
  error: error ?? "",
@@ -12793,13 +12821,13 @@ var FormErrorSummary = ({ description }) => {
12793
12821
 
12794
12822
  // src/components/FormField/FormField.tsx
12795
12823
  var import_react59 = require("react");
12796
- var import_styled_components73 = __toESM(require("styled-components"));
12824
+ var import_styled_components74 = __toESM(require("styled-components"));
12797
12825
  var import_type_guards39 = require("@wistia/type-guards");
12798
12826
 
12799
12827
  // src/components/Label/Label.tsx
12800
- var import_styled_components72 = __toESM(require("styled-components"));
12801
- var import_jsx_runtime259 = require("react/jsx-runtime");
12802
- var requiredStyle = import_styled_components72.css`
12828
+ var import_styled_components73 = __toESM(require("styled-components"));
12829
+ var import_jsx_runtime260 = require("react/jsx-runtime");
12830
+ var requiredStyle = import_styled_components73.css`
12803
12831
  &::after {
12804
12832
  color: var(--wui-color-text-error);
12805
12833
  display: inline;
@@ -12807,10 +12835,10 @@ var requiredStyle = import_styled_components72.css`
12807
12835
  content: '*';
12808
12836
  }
12809
12837
  `;
12810
- var disabledStyle3 = import_styled_components72.css`
12838
+ var disabledStyle3 = import_styled_components73.css`
12811
12839
  color: var(--wui-color-text-disabled);
12812
12840
  `;
12813
- var StyledLabel3 = import_styled_components72.default.label`
12841
+ var StyledLabel3 = import_styled_components73.default.label`
12814
12842
  display: block;
12815
12843
  width: 100%;
12816
12844
  color: var(--wui-color-text);
@@ -12842,7 +12870,7 @@ var Label = ({
12842
12870
  screenReaderOnly = false,
12843
12871
  ...props
12844
12872
  }) => {
12845
- return /* @__PURE__ */ (0, import_jsx_runtime259.jsx)(
12873
+ return /* @__PURE__ */ (0, import_jsx_runtime260.jsx)(
12846
12874
  StyledLabel3,
12847
12875
  {
12848
12876
  ...props,
@@ -12857,8 +12885,8 @@ var Label = ({
12857
12885
  Label.displayName = "Label_UI";
12858
12886
 
12859
12887
  // src/components/FormField/FormField.tsx
12860
- var import_jsx_runtime260 = require("react/jsx-runtime");
12861
- var StyledFormField = import_styled_components73.default.div`
12888
+ var import_jsx_runtime261 = require("react/jsx-runtime");
12889
+ var StyledFormField = import_styled_components74.default.div`
12862
12890
  --form-field-spacing: var(--wui-space-01);
12863
12891
  --form-field-spacing-inline: var(--wui-space-02);
12864
12892
  --form-field-error-color: var(--wui-color-text-secondary-error);
@@ -12888,7 +12916,7 @@ var StyledFormField = import_styled_components73.default.div`
12888
12916
  grid-template-rows: 1fr;
12889
12917
  }
12890
12918
  `;
12891
- var StyledErrorList = import_styled_components73.default.ul`
12919
+ var StyledErrorList = import_styled_components74.default.ul`
12892
12920
  margin: 0;
12893
12921
  padding: 0;
12894
12922
  padding-left: var(--wui-space-04);
@@ -12900,7 +12928,7 @@ var ErrorMessages = ({ errors, id }) => {
12900
12928
  const isErrorArray = (0, import_type_guards39.isArray)(errors);
12901
12929
  const isMultipleErrors = isErrorArray && errors.length > 1;
12902
12930
  if (!isErrorArray) {
12903
- return /* @__PURE__ */ (0, import_jsx_runtime260.jsx)(
12931
+ return /* @__PURE__ */ (0, import_jsx_runtime261.jsx)(
12904
12932
  Text,
12905
12933
  {
12906
12934
  colorScheme: "error",
@@ -12913,7 +12941,7 @@ var ErrorMessages = ({ errors, id }) => {
12913
12941
  );
12914
12942
  }
12915
12943
  if (!isMultipleErrors) {
12916
- return /* @__PURE__ */ (0, import_jsx_runtime260.jsx)(
12944
+ return /* @__PURE__ */ (0, import_jsx_runtime261.jsx)(
12917
12945
  Text,
12918
12946
  {
12919
12947
  colorScheme: "error",
@@ -12925,7 +12953,7 @@ var ErrorMessages = ({ errors, id }) => {
12925
12953
  id
12926
12954
  );
12927
12955
  }
12928
- return /* @__PURE__ */ (0, import_jsx_runtime260.jsx)(StyledErrorList, { children: errors.map((error, index) => /* @__PURE__ */ (0, import_jsx_runtime260.jsx)(
12956
+ return /* @__PURE__ */ (0, import_jsx_runtime261.jsx)(StyledErrorList, { children: errors.map((error, index) => /* @__PURE__ */ (0, import_jsx_runtime261.jsx)(
12929
12957
  Text,
12930
12958
  {
12931
12959
  colorScheme: "error",
@@ -12989,18 +13017,18 @@ var FormField = ({
12989
13017
  };
12990
13018
  }
12991
13019
  import_react59.Children.only(children);
12992
- return /* @__PURE__ */ (0, import_jsx_runtime260.jsxs)(
13020
+ return /* @__PURE__ */ (0, import_jsx_runtime261.jsxs)(
12993
13021
  StyledFormField,
12994
13022
  {
12995
13023
  ...props,
12996
13024
  "data-label-position": labelPosition ?? formState.labelPosition,
12997
13025
  children: [
12998
- !isIntegratedLabel && /* @__PURE__ */ (0, import_jsx_runtime260.jsx)(Label, { htmlFor: computedId, children: label }),
12999
- (0, import_type_guards39.isNotNil)(description) ? /* @__PURE__ */ (0, import_jsx_runtime260.jsx)(FormControlLabelDescription, { id: descriptionId, children: description }) : null,
13026
+ !isIntegratedLabel && /* @__PURE__ */ (0, import_jsx_runtime261.jsx)(Label, { htmlFor: computedId, children: label }),
13027
+ (0, import_type_guards39.isNotNil)(description) ? /* @__PURE__ */ (0, import_jsx_runtime261.jsx)(FormControlLabelDescription, { id: descriptionId, children: description }) : null,
13000
13028
  (0, import_react59.cloneElement)(children, childProps),
13001
- (0, import_type_guards39.isNotNil)(computedError) ? /* @__PURE__ */ (0, import_jsx_runtime260.jsxs)(import_jsx_runtime260.Fragment, { children: [
13002
- /* @__PURE__ */ (0, import_jsx_runtime260.jsx)("div", {}),
13003
- /* @__PURE__ */ (0, import_jsx_runtime260.jsx)(
13029
+ (0, import_type_guards39.isNotNil)(computedError) ? /* @__PURE__ */ (0, import_jsx_runtime261.jsxs)(import_jsx_runtime261.Fragment, { children: [
13030
+ /* @__PURE__ */ (0, import_jsx_runtime261.jsx)("div", {}),
13031
+ /* @__PURE__ */ (0, import_jsx_runtime261.jsx)(
13004
13032
  ErrorMessages,
13005
13033
  {
13006
13034
  errors: computedError,
@@ -13016,7 +13044,7 @@ FormField.displayName = "FormField_UI";
13016
13044
 
13017
13045
  // src/components/FormGroup/RadioGroup.tsx
13018
13046
  var import_react60 = require("react");
13019
- var import_jsx_runtime261 = require("react/jsx-runtime");
13047
+ var import_jsx_runtime262 = require("react/jsx-runtime");
13020
13048
  var RadioGroupContext = (0, import_react60.createContext)(null);
13021
13049
  var useRadioGroup = () => {
13022
13050
  return (0, import_react60.useContext)(RadioGroupContext);
@@ -13037,30 +13065,30 @@ var RadioGroup = ({
13037
13065
  value: derivedValue
13038
13066
  };
13039
13067
  }, [name, derivedValue, onChange]);
13040
- return /* @__PURE__ */ (0, import_jsx_runtime261.jsx)(RadioGroupContext.Provider, { value: context, children: /* @__PURE__ */ (0, import_jsx_runtime261.jsx)(FormGroup, { ...props, children }) });
13068
+ return /* @__PURE__ */ (0, import_jsx_runtime262.jsx)(RadioGroupContext.Provider, { value: context, children: /* @__PURE__ */ (0, import_jsx_runtime262.jsx)(FormGroup, { ...props, children }) });
13041
13069
  };
13042
13070
  RadioGroup.displayName = "RadioGroup_UI";
13043
13071
 
13044
13072
  // src/components/Grid/Grid.tsx
13045
13073
  var import_react61 = require("react");
13046
- var import_styled_components74 = __toESM(require("styled-components"));
13074
+ var import_styled_components75 = __toESM(require("styled-components"));
13047
13075
  var import_type_guards40 = require("@wistia/type-guards");
13048
- var import_jsx_runtime262 = require("react/jsx-runtime");
13076
+ var import_jsx_runtime263 = require("react/jsx-runtime");
13049
13077
  var DEFAULT_ELEMENT5 = "div";
13050
13078
  var getGridTemplateColumns = (maxColumns, minChildWidth, expandItems) => {
13051
13079
  if (minChildWidth === "auto" && maxColumns === "auto") {
13052
- return import_styled_components74.css`
13080
+ return import_styled_components75.css`
13053
13081
  grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
13054
13082
  `;
13055
13083
  }
13056
13084
  const gridMode = expandItems ? "auto-fit" : "auto-fill";
13057
13085
  const minChildWidthValue = minChildWidth === "auto" ? 0 : minChildWidth;
13058
13086
  if (maxColumns === "auto") {
13059
- return import_styled_components74.css`
13087
+ return import_styled_components75.css`
13060
13088
  grid-template-columns: repeat(${gridMode}, minmax(${minChildWidthValue}px, 1fr));
13061
13089
  `;
13062
13090
  }
13063
- return import_styled_components74.css`
13091
+ return import_styled_components75.css`
13064
13092
  /* Adapted from https://9elements.com/blog/building-a-rock-solid-auto-grid/ */
13065
13093
  --wui-grid-total-column-gap-width: calc(${maxColumns - 1} * var(--wui-grid-column-gap));
13066
13094
  --wui-grid-max-column-width: calc(
@@ -13073,7 +13101,7 @@ var getGridTemplateColumns = (maxColumns, minChildWidth, expandItems) => {
13073
13101
  );
13074
13102
  `;
13075
13103
  };
13076
- var StyledGrid = import_styled_components74.default.div`
13104
+ var StyledGrid = import_styled_components75.default.div`
13077
13105
  --wui-grid-column-gap: ${({ $columnGap }) => `var(--wui-${$columnGap})`};
13078
13106
  --wui-grid-row-gap: ${({ $rowGap }) => `var(--wui-${$rowGap})`};
13079
13107
 
@@ -13097,7 +13125,7 @@ var GridComponent = (0, import_react61.forwardRef)(
13097
13125
  const { column, row } = (0, import_type_guards40.isRecord)(responsiveGap) ? responsiveGap : { column: responsiveGap, row: responsiveGap };
13098
13126
  const responsiveColumns = useResponsiveProp(columns);
13099
13127
  const responsiveMinChildWidth = useResponsiveProp(minChildWidth);
13100
- return /* @__PURE__ */ (0, import_jsx_runtime262.jsx)(
13128
+ return /* @__PURE__ */ (0, import_jsx_runtime263.jsx)(
13101
13129
  StyledGrid,
13102
13130
  {
13103
13131
  ref,
@@ -13117,11 +13145,11 @@ GridComponent.displayName = "Grid_UI";
13117
13145
  var Grid = makePolymorphic(GridComponent);
13118
13146
 
13119
13147
  // src/components/InputClickToCopy/InputClickToCopy.tsx
13120
- var import_styled_components75 = __toESM(require("styled-components"));
13148
+ var import_styled_components76 = __toESM(require("styled-components"));
13121
13149
  var import_react62 = require("react");
13122
13150
  var import_type_guards41 = require("@wistia/type-guards");
13123
- var import_jsx_runtime263 = require("react/jsx-runtime");
13124
- var StyledInput2 = (0, import_styled_components75.default)(Input)`
13151
+ var import_jsx_runtime264 = require("react/jsx-runtime");
13152
+ var StyledInput2 = (0, import_styled_components76.default)(Input)`
13125
13153
  &:not([aria-disabled='true']) {
13126
13154
  cursor: pointer;
13127
13155
  }
@@ -13158,7 +13186,7 @@ var InputClickToCopy = (0, import_react62.forwardRef)(
13158
13186
  return value;
13159
13187
  });
13160
13188
  };
13161
- return /* @__PURE__ */ (0, import_jsx_runtime263.jsx)(
13189
+ return /* @__PURE__ */ (0, import_jsx_runtime264.jsx)(
13162
13190
  StyledInput2,
13163
13191
  {
13164
13192
  "aria-label": "Click to Copy",
@@ -13166,13 +13194,13 @@ var InputClickToCopy = (0, import_react62.forwardRef)(
13166
13194
  ref,
13167
13195
  onClick: handleClick,
13168
13196
  readOnly: true,
13169
- rightIcon: isCopied ? /* @__PURE__ */ (0, import_jsx_runtime263.jsx)(
13197
+ rightIcon: isCopied ? /* @__PURE__ */ (0, import_jsx_runtime264.jsx)(
13170
13198
  Icon,
13171
13199
  {
13172
13200
  colorScheme: "success",
13173
13201
  type: "checkmark-circle"
13174
13202
  }
13175
- ) : /* @__PURE__ */ (0, import_jsx_runtime263.jsx)(Icon, { type: "save-as-copy" }),
13203
+ ) : /* @__PURE__ */ (0, import_jsx_runtime264.jsx)(Icon, { type: "save-as-copy" }),
13176
13204
  value
13177
13205
  }
13178
13206
  );
@@ -13181,16 +13209,16 @@ var InputClickToCopy = (0, import_react62.forwardRef)(
13181
13209
  InputClickToCopy.displayName = "InputClickToCopy_UI";
13182
13210
 
13183
13211
  // src/components/KeyboardShortcut/KeyboardShortcut.tsx
13184
- var import_styled_components76 = __toESM(require("styled-components"));
13212
+ var import_styled_components77 = __toESM(require("styled-components"));
13185
13213
  var import_type_guards42 = require("@wistia/type-guards");
13186
- var import_jsx_runtime264 = require("react/jsx-runtime");
13187
- var StyledKeyboardShortcut = import_styled_components76.default.div`
13214
+ var import_jsx_runtime265 = require("react/jsx-runtime");
13215
+ var StyledKeyboardShortcut = import_styled_components77.default.div`
13188
13216
  align-items: center;
13189
13217
  display: flex;
13190
13218
  gap: var(--wui-space-02);
13191
13219
  ${({ $fullWidth }) => $fullWidth && "width: 100%; justify-content: space-between;"}
13192
13220
  `;
13193
- var StyledKey = import_styled_components76.default.kbd`
13221
+ var StyledKey = import_styled_components77.default.kbd`
13194
13222
  align-items: center;
13195
13223
  background: var(--wui-color-bg-surface-secondary);
13196
13224
  border-bottom: 1px solid var(--wui-color-border-secondary);
@@ -13213,11 +13241,11 @@ var StyledKey = import_styled_components76.default.kbd`
13213
13241
  min-width: 20px;
13214
13242
  padding: 0 var(--wui-space-01);
13215
13243
  `;
13216
- var Label2 = import_styled_components76.default.span`
13244
+ var Label2 = import_styled_components77.default.span`
13217
13245
  color: var(--wui-color-text);
13218
13246
  font-size: 12px;
13219
13247
  `;
13220
- var KeysContainer = import_styled_components76.default.div`
13248
+ var KeysContainer = import_styled_components77.default.div`
13221
13249
  display: flex;
13222
13250
  gap: var(--wui-space-01);
13223
13251
  `;
@@ -13270,14 +13298,14 @@ var KeyboardShortcut = ({
13270
13298
  keyboardKeys,
13271
13299
  fullWidth = false,
13272
13300
  ...otherProps
13273
- }) => /* @__PURE__ */ (0, import_jsx_runtime264.jsxs)(
13301
+ }) => /* @__PURE__ */ (0, import_jsx_runtime265.jsxs)(
13274
13302
  StyledKeyboardShortcut,
13275
13303
  {
13276
13304
  $fullWidth: fullWidth,
13277
13305
  ...otherProps,
13278
13306
  children: [
13279
- (0, import_type_guards42.isNotNil)(label) && /* @__PURE__ */ (0, import_jsx_runtime264.jsx)(Label2, { children: label }),
13280
- /* @__PURE__ */ (0, import_jsx_runtime264.jsx)(KeysContainer, { children: (Array.isArray(keyboardKeys) ? keyboardKeys : [keyboardKeys]).map((keyboardKey, index) => /* @__PURE__ */ (0, import_jsx_runtime264.jsx)(
13307
+ (0, import_type_guards42.isNotNil)(label) && /* @__PURE__ */ (0, import_jsx_runtime265.jsx)(Label2, { children: label }),
13308
+ /* @__PURE__ */ (0, import_jsx_runtime265.jsx)(KeysContainer, { children: (Array.isArray(keyboardKeys) ? keyboardKeys : [keyboardKeys]).map((keyboardKey, index) => /* @__PURE__ */ (0, import_jsx_runtime265.jsx)(
13281
13309
  StyledKey,
13282
13310
  {
13283
13311
  children: keyToString(keyboardKey)
@@ -13291,26 +13319,26 @@ KeyboardShortcut.displayName = "KeyboardShortcut_UI";
13291
13319
 
13292
13320
  // src/components/List/List.tsx
13293
13321
  var import_type_guards44 = require("@wistia/type-guards");
13294
- var import_styled_components78 = __toESM(require("styled-components"));
13322
+ var import_styled_components79 = __toESM(require("styled-components"));
13295
13323
 
13296
13324
  // src/components/List/ListItem.tsx
13297
- var import_styled_components77 = __toESM(require("styled-components"));
13325
+ var import_styled_components78 = __toESM(require("styled-components"));
13298
13326
  var import_type_guards43 = require("@wistia/type-guards");
13299
- var import_jsx_runtime265 = require("react/jsx-runtime");
13300
- var ListItemComponent = import_styled_components77.default.li`
13327
+ var import_jsx_runtime266 = require("react/jsx-runtime");
13328
+ var ListItemComponent = import_styled_components78.default.li`
13301
13329
  margin-bottom: var(--wui-space-02);
13302
13330
  `;
13303
13331
  var ListItem = ({ children }) => {
13304
13332
  if ((0, import_type_guards43.isNil)(children)) {
13305
13333
  return null;
13306
13334
  }
13307
- return /* @__PURE__ */ (0, import_jsx_runtime265.jsx)(ListItemComponent, { children });
13335
+ return /* @__PURE__ */ (0, import_jsx_runtime266.jsx)(ListItemComponent, { children });
13308
13336
  };
13309
13337
  ListItem.displayName = "ListItem_UI";
13310
13338
 
13311
13339
  // src/components/List/List.tsx
13312
- var import_jsx_runtime266 = require("react/jsx-runtime");
13313
- var spacesStyle = import_styled_components78.css`
13340
+ var import_jsx_runtime267 = require("react/jsx-runtime");
13341
+ var spacesStyle = import_styled_components79.css`
13314
13342
  overflow: hidden;
13315
13343
  padding-left: 0;
13316
13344
  vertical-align: bottom;
@@ -13332,7 +13360,7 @@ var spacesStyle = import_styled_components78.css`
13332
13360
  }
13333
13361
  }
13334
13362
  `;
13335
- var commasStyle = import_styled_components78.css`
13363
+ var commasStyle = import_styled_components79.css`
13336
13364
  ${spacesStyle};
13337
13365
 
13338
13366
  li {
@@ -13342,7 +13370,7 @@ var commasStyle = import_styled_components78.css`
13342
13370
  }
13343
13371
  }
13344
13372
  `;
13345
- var slashesStyle = import_styled_components78.css`
13373
+ var slashesStyle = import_styled_components79.css`
13346
13374
  ${spacesStyle};
13347
13375
 
13348
13376
  li {
@@ -13353,7 +13381,7 @@ var slashesStyle = import_styled_components78.css`
13353
13381
  }
13354
13382
  }
13355
13383
  `;
13356
- var breadcrumbsStyle = import_styled_components78.css`
13384
+ var breadcrumbsStyle = import_styled_components79.css`
13357
13385
  ${spacesStyle};
13358
13386
 
13359
13387
  li {
@@ -13364,11 +13392,11 @@ var breadcrumbsStyle = import_styled_components78.css`
13364
13392
  }
13365
13393
  }
13366
13394
  `;
13367
- var unbulletedStyle = import_styled_components78.css`
13395
+ var unbulletedStyle = import_styled_components79.css`
13368
13396
  list-style: none;
13369
13397
  padding-left: 0;
13370
13398
  `;
13371
- var ListComponent = import_styled_components78.default.ul`
13399
+ var ListComponent = import_styled_components79.default.ul`
13372
13400
  list-style-position: outside;
13373
13401
  margin: 0 0 var(--wui-space-01);
13374
13402
  padding: 0 0 0 var(--wui-space-04);
@@ -13395,7 +13423,7 @@ var ListComponent = import_styled_components78.default.ul`
13395
13423
  `;
13396
13424
  var renderListComponent = (listItems, variant, { ...otherProps }) => {
13397
13425
  const elementType = variant === "ordered" ? "ol" : "ul";
13398
- return /* @__PURE__ */ (0, import_jsx_runtime266.jsx)(
13426
+ return /* @__PURE__ */ (0, import_jsx_runtime267.jsx)(
13399
13427
  ListComponent,
13400
13428
  {
13401
13429
  as: elementType,
@@ -13412,7 +13440,7 @@ var renderListFromArray = (listItems, variant, otherProps) => {
13412
13440
  const nextItem = listItems[i + 1];
13413
13441
  const key = `item-${itemCount += 1}`;
13414
13442
  if (Array.isArray(nextItem)) {
13415
- return /* @__PURE__ */ (0, import_jsx_runtime266.jsxs)(ListItem, { children: [
13443
+ return /* @__PURE__ */ (0, import_jsx_runtime267.jsxs)(ListItem, { children: [
13416
13444
  item,
13417
13445
  renderListFromArray(nextItem, variant, otherProps)
13418
13446
  ] }, key);
@@ -13420,7 +13448,7 @@ var renderListFromArray = (listItems, variant, otherProps) => {
13420
13448
  if (Array.isArray(item)) {
13421
13449
  return null;
13422
13450
  }
13423
- return /* @__PURE__ */ (0, import_jsx_runtime266.jsx)(ListItem, { children: item }, key);
13451
+ return /* @__PURE__ */ (0, import_jsx_runtime267.jsx)(ListItem, { children: item }, key);
13424
13452
  });
13425
13453
  return renderListComponent(items, variant, otherProps);
13426
13454
  };
@@ -13449,7 +13477,7 @@ List.displayName = "List_UI";
13449
13477
 
13450
13478
  // src/components/Menu/Menu.tsx
13451
13479
  var import_react64 = require("react");
13452
- var import_styled_components79 = __toESM(require("styled-components"));
13480
+ var import_styled_components80 = __toESM(require("styled-components"));
13453
13481
  var import_react_dropdown_menu = require("@radix-ui/react-dropdown-menu");
13454
13482
  var import_type_guards45 = require("@wistia/type-guards");
13455
13483
 
@@ -13459,8 +13487,8 @@ var MenuContext = (0, import_react63.createContext)({ compact: false });
13459
13487
  var useMenuContext = () => (0, import_react63.useContext)(MenuContext);
13460
13488
 
13461
13489
  // src/components/Menu/Menu.tsx
13462
- var import_jsx_runtime267 = require("react/jsx-runtime");
13463
- var open = import_styled_components79.keyframes`
13490
+ var import_jsx_runtime268 = require("react/jsx-runtime");
13491
+ var open = import_styled_components80.keyframes`
13464
13492
  from {
13465
13493
  opacity: 0;
13466
13494
  transform: scale(.97) translateY(-8px);
@@ -13470,7 +13498,7 @@ var open = import_styled_components79.keyframes`
13470
13498
  transform: scale(1);
13471
13499
  }
13472
13500
  `;
13473
- var close = import_styled_components79.keyframes`
13501
+ var close = import_styled_components80.keyframes`
13474
13502
  from {
13475
13503
  opacity: 1;
13476
13504
  transform: scale(1);
@@ -13480,7 +13508,7 @@ var close = import_styled_components79.keyframes`
13480
13508
  transform: scale(.97) translateY(-8px);
13481
13509
  }
13482
13510
  `;
13483
- var menuItemCss = import_styled_components79.css`
13511
+ var menuItemCss = import_styled_components80.css`
13484
13512
  --menu-label-description-gap: var(--wui-space-01);
13485
13513
  --menu-item-inner-gap: var(--wui-space-03);
13486
13514
  --menu-item-left-icon-size: 24px;
@@ -13491,7 +13519,7 @@ var menuItemCss = import_styled_components79.css`
13491
13519
  --menu-label-line-height: var(--wui-typography-label-3-line-height);
13492
13520
  --menu-divider-margin: var(--wui-space-02);
13493
13521
  `;
13494
- var compactMenuItemCss = import_styled_components79.css`
13522
+ var compactMenuItemCss = import_styled_components80.css`
13495
13523
  --menu-label-description-gap: 0;
13496
13524
  --menu-item-inner-gap: var(--wui-space-02);
13497
13525
  --menu-item-left-icon-size: 16px;
@@ -13502,7 +13530,7 @@ var compactMenuItemCss = import_styled_components79.css`
13502
13530
  --menu-label-line-height: var(--wui-typography-label-4-line-height);
13503
13531
  --menu-divider-margin: var(--wui-space-01);
13504
13532
  `;
13505
- var menuContentCss = import_styled_components79.css`
13533
+ var menuContentCss = import_styled_components80.css`
13506
13534
  --menu-font-family: var(--wui-typography-family-default);
13507
13535
  --menu-bg: var(--wui-color-bg-surface);
13508
13536
  --menu-shadow: var(--wui-elevation-01);
@@ -13544,7 +13572,7 @@ var menuContentCss = import_styled_components79.css`
13544
13572
  margin: var(--menu-divider-margin) 0;
13545
13573
  }
13546
13574
  `;
13547
- var MenuContent = (0, import_styled_components79.default)(import_react_dropdown_menu.DropdownMenuContent)`
13575
+ var MenuContent = (0, import_styled_components80.default)(import_react_dropdown_menu.DropdownMenuContent)`
13548
13576
  ${menuContentCss}
13549
13577
  min-width: var(--radix-dropdown-menu-trigger-width);
13550
13578
  `;
@@ -13572,25 +13600,25 @@ var Menu = (0, import_react64.forwardRef)(
13572
13600
  onOpenChange: () => null
13573
13601
  };
13574
13602
  }
13575
- return /* @__PURE__ */ (0, import_jsx_runtime267.jsx)(MenuContext.Provider, { value: contextValue, children: /* @__PURE__ */ (0, import_jsx_runtime267.jsxs)(
13603
+ return /* @__PURE__ */ (0, import_jsx_runtime268.jsx)(MenuContext.Provider, { value: contextValue, children: /* @__PURE__ */ (0, import_jsx_runtime268.jsxs)(
13576
13604
  import_react_dropdown_menu.DropdownMenu,
13577
13605
  {
13578
13606
  modal: false,
13579
13607
  ...controlProps,
13580
13608
  children: [
13581
- /* @__PURE__ */ (0, import_jsx_runtime267.jsx)(import_react_dropdown_menu.DropdownMenuTrigger, { asChild: true, children: (0, import_type_guards45.isNotUndefined)(trigger) ? trigger : /* @__PURE__ */ (0, import_jsx_runtime267.jsx)(
13609
+ /* @__PURE__ */ (0, import_jsx_runtime268.jsx)(import_react_dropdown_menu.DropdownMenuTrigger, { asChild: true, children: (0, import_type_guards45.isNotUndefined)(trigger) ? trigger : /* @__PURE__ */ (0, import_jsx_runtime268.jsx)(
13582
13610
  Button,
13583
13611
  {
13584
13612
  ref,
13585
13613
  "aria-expanded": isOpen,
13586
13614
  disabled,
13587
13615
  forceState: isOpen ? "active" : void 0,
13588
- rightIcon: /* @__PURE__ */ (0, import_jsx_runtime267.jsx)(Icon, { type: "caret-down" }),
13616
+ rightIcon: /* @__PURE__ */ (0, import_jsx_runtime268.jsx)(Icon, { type: "caret-down" }),
13589
13617
  ...triggerProps,
13590
13618
  children: label
13591
13619
  }
13592
13620
  ) }),
13593
- /* @__PURE__ */ (0, import_jsx_runtime267.jsx)(import_react_dropdown_menu.DropdownMenuPortal, { children: /* @__PURE__ */ (0, import_jsx_runtime267.jsx)(
13621
+ /* @__PURE__ */ (0, import_jsx_runtime268.jsx)(import_react_dropdown_menu.DropdownMenuPortal, { children: /* @__PURE__ */ (0, import_jsx_runtime268.jsx)(
13594
13622
  MenuContent,
13595
13623
  {
13596
13624
  ...props,
@@ -13614,19 +13642,19 @@ Menu.displayName = "Menu_UI";
13614
13642
  Menu.displayName = "Menu_UI";
13615
13643
 
13616
13644
  // src/components/Menu/MenuLabel.tsx
13617
- var import_styled_components80 = __toESM(require("styled-components"));
13645
+ var import_styled_components81 = __toESM(require("styled-components"));
13618
13646
  var import_react_dropdown_menu2 = require("@radix-ui/react-dropdown-menu");
13619
- var import_jsx_runtime268 = require("react/jsx-runtime");
13620
- var StyledMenuLabel = (0, import_styled_components80.default)(import_react_dropdown_menu2.DropdownMenuLabel)`
13647
+ var import_jsx_runtime269 = require("react/jsx-runtime");
13648
+ var StyledMenuLabel = (0, import_styled_components81.default)(import_react_dropdown_menu2.DropdownMenuLabel)`
13621
13649
  padding: var(--wui-space-02);
13622
13650
  `;
13623
13651
  var MenuLabel = ({ children, ...props }) => {
13624
- return /* @__PURE__ */ (0, import_jsx_runtime268.jsx)(
13652
+ return /* @__PURE__ */ (0, import_jsx_runtime269.jsx)(
13625
13653
  StyledMenuLabel,
13626
13654
  {
13627
13655
  asChild: true,
13628
13656
  ...props,
13629
- children: /* @__PURE__ */ (0, import_jsx_runtime268.jsx)(
13657
+ children: /* @__PURE__ */ (0, import_jsx_runtime269.jsx)(
13630
13658
  Heading,
13631
13659
  {
13632
13660
  renderAs: "span",
@@ -13642,16 +13670,16 @@ MenuLabel.displayName = "MenuLabel_UI";
13642
13670
 
13643
13671
  // src/components/Menu/SubMenu.tsx
13644
13672
  var import_react66 = require("react");
13645
- var import_styled_components83 = __toESM(require("styled-components"));
13673
+ var import_styled_components84 = __toESM(require("styled-components"));
13646
13674
  var import_react_dropdown_menu3 = require("@radix-ui/react-dropdown-menu");
13647
13675
  var import_type_guards47 = require("@wistia/type-guards");
13648
13676
 
13649
13677
  // src/components/Menu/MenuItemButton.tsx
13650
13678
  var import_react65 = require("react");
13651
- var import_styled_components81 = __toESM(require("styled-components"));
13679
+ var import_styled_components82 = __toESM(require("styled-components"));
13652
13680
  var import_type_guards46 = require("@wistia/type-guards");
13653
- var import_jsx_runtime269 = require("react/jsx-runtime");
13654
- var StyledButton3 = (0, import_styled_components81.default)(Button)`
13681
+ var import_jsx_runtime270 = require("react/jsx-runtime");
13682
+ var StyledButton3 = (0, import_styled_components82.default)(Button)`
13655
13683
  ${({ colorScheme }) => getColorScheme(colorScheme)};
13656
13684
 
13657
13685
  display: flex;
@@ -13690,7 +13718,7 @@ var StyledButton3 = (0, import_styled_components81.default)(Button)`
13690
13718
  padding-left: var(--wui-space-04);
13691
13719
  }
13692
13720
  `;
13693
- var StyledLeftIconContainer = import_styled_components81.default.div`
13721
+ var StyledLeftIconContainer = import_styled_components82.default.div`
13694
13722
  height: var(--menu-item-left-icon-size);
13695
13723
  width: var(--menu-item-left-icon-size);
13696
13724
 
@@ -13701,7 +13729,7 @@ var StyledLeftIconContainer = import_styled_components81.default.div`
13701
13729
  }
13702
13730
  }
13703
13731
  `;
13704
- var StyledRightIconContainer = import_styled_components81.default.div`
13732
+ var StyledRightIconContainer = import_styled_components82.default.div`
13705
13733
  height: var(--menu-item-right-icon-size);
13706
13734
  width: var(--menu-item-right-icon-size);
13707
13735
 
@@ -13712,13 +13740,13 @@ var StyledRightIconContainer = import_styled_components81.default.div`
13712
13740
  }
13713
13741
  }
13714
13742
  `;
13715
- var StyledLabelAndDescriptionContainer = import_styled_components81.default.div`
13743
+ var StyledLabelAndDescriptionContainer = import_styled_components82.default.div`
13716
13744
  display: flex;
13717
13745
  flex-direction: column;
13718
13746
  gap: var(--menu-label-description-gap);
13719
13747
  flex-basis: 100%;
13720
13748
  `;
13721
- var StyledBadgeContainer = import_styled_components81.default.div`
13749
+ var StyledBadgeContainer = import_styled_components82.default.div`
13722
13750
  align-self: start;
13723
13751
  justify-self: end;
13724
13752
  font-size: var(--wui-typography-label-4-size);
@@ -13733,7 +13761,7 @@ var MenuItemButton = (0, import_react65.forwardRef)(({ children, appearance, com
13733
13761
  colorScheme = "error";
13734
13762
  }
13735
13763
  if (appearance === "gated") {
13736
- badge = /* @__PURE__ */ (0, import_jsx_runtime269.jsx)(
13764
+ badge = /* @__PURE__ */ (0, import_jsx_runtime270.jsx)(
13737
13765
  Icon,
13738
13766
  {
13739
13767
  colorScheme: "purple",
@@ -13745,7 +13773,7 @@ var MenuItemButton = (0, import_react65.forwardRef)(({ children, appearance, com
13745
13773
  }
13746
13774
  );
13747
13775
  }
13748
- return /* @__PURE__ */ (0, import_jsx_runtime269.jsxs)(
13776
+ return /* @__PURE__ */ (0, import_jsx_runtime270.jsxs)(
13749
13777
  StyledButton3,
13750
13778
  {
13751
13779
  ...props,
@@ -13755,10 +13783,10 @@ var MenuItemButton = (0, import_react65.forwardRef)(({ children, appearance, com
13755
13783
  fullWidth: true,
13756
13784
  unstyled: true,
13757
13785
  children: [
13758
- props.leftIcon ? /* @__PURE__ */ (0, import_jsx_runtime269.jsx)(StyledLeftIconContainer, { children: props.leftIcon }) : null,
13759
- /* @__PURE__ */ (0, import_jsx_runtime269.jsx)(StyledLabelAndDescriptionContainer, { children }),
13760
- (0, import_type_guards46.isNotNil)(badge) || (0, import_type_guards46.isNotNil)(command) ? /* @__PURE__ */ (0, import_jsx_runtime269.jsx)(StyledBadgeContainer, { children: badge ?? command }) : null,
13761
- props.rightIcon ? /* @__PURE__ */ (0, import_jsx_runtime269.jsx)(StyledRightIconContainer, { children: props.rightIcon }) : null
13786
+ props.leftIcon ? /* @__PURE__ */ (0, import_jsx_runtime270.jsx)(StyledLeftIconContainer, { children: props.leftIcon }) : null,
13787
+ /* @__PURE__ */ (0, import_jsx_runtime270.jsx)(StyledLabelAndDescriptionContainer, { children }),
13788
+ (0, import_type_guards46.isNotNil)(badge) || (0, import_type_guards46.isNotNil)(command) ? /* @__PURE__ */ (0, import_jsx_runtime270.jsx)(StyledBadgeContainer, { children: badge ?? command }) : null,
13789
+ props.rightIcon ? /* @__PURE__ */ (0, import_jsx_runtime270.jsx)(StyledRightIconContainer, { children: props.rightIcon }) : null
13762
13790
  ]
13763
13791
  }
13764
13792
  );
@@ -13766,15 +13794,15 @@ var MenuItemButton = (0, import_react65.forwardRef)(({ children, appearance, com
13766
13794
  MenuItemButton.displayName = "MenuItemButton_UI";
13767
13795
 
13768
13796
  // src/components/Menu/MenuItemLabelDescription.tsx
13769
- var import_styled_components82 = __toESM(require("styled-components"));
13770
- var import_jsx_runtime270 = require("react/jsx-runtime");
13771
- var StyledMenuItemLabel = import_styled_components82.default.span``;
13772
- var StyledMenuItemDescription = (0, import_styled_components82.default)(Text)``;
13797
+ var import_styled_components83 = __toESM(require("styled-components"));
13798
+ var import_jsx_runtime271 = require("react/jsx-runtime");
13799
+ var StyledMenuItemLabel = import_styled_components83.default.span``;
13800
+ var StyledMenuItemDescription = (0, import_styled_components83.default)(Text)``;
13773
13801
  var MenuItemLabel = ({ children }) => {
13774
- return /* @__PURE__ */ (0, import_jsx_runtime270.jsx)(StyledMenuItemLabel, { children });
13802
+ return /* @__PURE__ */ (0, import_jsx_runtime271.jsx)(StyledMenuItemLabel, { children });
13775
13803
  };
13776
13804
  var MenuItemDescription = ({ children }) => {
13777
- return /* @__PURE__ */ (0, import_jsx_runtime270.jsx)(
13805
+ return /* @__PURE__ */ (0, import_jsx_runtime271.jsx)(
13778
13806
  StyledMenuItemDescription,
13779
13807
  {
13780
13808
  prominence: "secondary",
@@ -13785,18 +13813,18 @@ var MenuItemDescription = ({ children }) => {
13785
13813
  };
13786
13814
 
13787
13815
  // src/components/Menu/SubMenu.tsx
13788
- var import_jsx_runtime271 = require("react/jsx-runtime");
13789
- var SubMenuContent = (0, import_styled_components83.default)(import_react_dropdown_menu3.DropdownMenuSubContent)`
13816
+ var import_jsx_runtime272 = require("react/jsx-runtime");
13817
+ var SubMenuContent = (0, import_styled_components84.default)(import_react_dropdown_menu3.DropdownMenuSubContent)`
13790
13818
  ${menuContentCss}
13791
13819
 
13792
13820
  ${mq.smAndDown} {
13793
13821
  transform: translateX(-100%) !important;
13794
13822
  }
13795
13823
  `;
13796
- var StyledMobileSubMenuItems = import_styled_components83.default.div`
13824
+ var StyledMobileSubMenuItems = import_styled_components84.default.div`
13797
13825
  margin-left: var(--wui-space-04);
13798
13826
  `;
13799
- var StyledSubTrigger = (0, import_styled_components83.default)(import_react_dropdown_menu3.DropdownMenuSubTrigger)`
13827
+ var StyledSubTrigger = (0, import_styled_components84.default)(import_react_dropdown_menu3.DropdownMenuSubTrigger)`
13800
13828
  outline: none;
13801
13829
 
13802
13830
  &[data-state='open'],
@@ -13807,12 +13835,12 @@ var StyledSubTrigger = (0, import_styled_components83.default)(import_react_drop
13807
13835
  var SubMenuTrigger = ({ icon, ...props }) => {
13808
13836
  const { isSmAndUp } = useMq();
13809
13837
  const Trigger4 = isSmAndUp ? StyledSubTrigger : import_react_dropdown_menu3.DropdownMenuItem;
13810
- return /* @__PURE__ */ (0, import_jsx_runtime271.jsx)(Trigger4, { asChild: true, children: /* @__PURE__ */ (0, import_jsx_runtime271.jsx)(
13838
+ return /* @__PURE__ */ (0, import_jsx_runtime272.jsx)(Trigger4, { asChild: true, children: /* @__PURE__ */ (0, import_jsx_runtime272.jsx)(
13811
13839
  MenuItemButton,
13812
13840
  {
13813
13841
  ...props,
13814
13842
  leftIcon: icon,
13815
- rightIcon: /* @__PURE__ */ (0, import_jsx_runtime271.jsx)(Icon, { type: "caret-right" })
13843
+ rightIcon: /* @__PURE__ */ (0, import_jsx_runtime272.jsx)(Icon, { type: "caret-right" })
13816
13844
  }
13817
13845
  ) });
13818
13846
  };
@@ -13826,14 +13854,14 @@ var SubMenu = ({
13826
13854
  const { isSmAndUp } = useMq();
13827
13855
  const [isExpanded, setIsExpanded] = (0, import_react66.useState)(false);
13828
13856
  const { compact } = useMenuContext();
13829
- return isSmAndUp ? /* @__PURE__ */ (0, import_jsx_runtime271.jsxs)(import_react_dropdown_menu3.DropdownMenuSub, { onOpenChange, children: [
13830
- /* @__PURE__ */ (0, import_jsx_runtime271.jsxs)(SubMenuTrigger, { ...props, children: [
13831
- /* @__PURE__ */ (0, import_jsx_runtime271.jsx)(MenuItemLabel, { children: label }),
13832
- (0, import_type_guards47.isNotNil)(description) ? /* @__PURE__ */ (0, import_jsx_runtime271.jsx)(MenuItemDescription, { children: description }) : null
13857
+ return isSmAndUp ? /* @__PURE__ */ (0, import_jsx_runtime272.jsxs)(import_react_dropdown_menu3.DropdownMenuSub, { onOpenChange, children: [
13858
+ /* @__PURE__ */ (0, import_jsx_runtime272.jsxs)(SubMenuTrigger, { ...props, children: [
13859
+ /* @__PURE__ */ (0, import_jsx_runtime272.jsx)(MenuItemLabel, { children: label }),
13860
+ (0, import_type_guards47.isNotNil)(description) ? /* @__PURE__ */ (0, import_jsx_runtime272.jsx)(MenuItemDescription, { children: description }) : null
13833
13861
  ] }),
13834
- /* @__PURE__ */ (0, import_jsx_runtime271.jsx)(import_react_dropdown_menu3.DropdownMenuPortal, { children: /* @__PURE__ */ (0, import_jsx_runtime271.jsx)(SubMenuContent, { $compact: compact, children }) })
13835
- ] }) : /* @__PURE__ */ (0, import_jsx_runtime271.jsxs)(import_react_dropdown_menu3.DropdownMenuGroup, { children: [
13836
- /* @__PURE__ */ (0, import_jsx_runtime271.jsxs)(
13862
+ /* @__PURE__ */ (0, import_jsx_runtime272.jsx)(import_react_dropdown_menu3.DropdownMenuPortal, { children: /* @__PURE__ */ (0, import_jsx_runtime272.jsx)(SubMenuContent, { $compact: compact, children }) })
13863
+ ] }) : /* @__PURE__ */ (0, import_jsx_runtime272.jsxs)(import_react_dropdown_menu3.DropdownMenuGroup, { children: [
13864
+ /* @__PURE__ */ (0, import_jsx_runtime272.jsxs)(
13837
13865
  SubMenuTrigger,
13838
13866
  {
13839
13867
  ...props,
@@ -13842,12 +13870,12 @@ var SubMenu = ({
13842
13870
  setIsExpanded((prev) => !prev);
13843
13871
  },
13844
13872
  children: [
13845
- /* @__PURE__ */ (0, import_jsx_runtime271.jsx)(MenuItemLabel, { children: label }),
13846
- /* @__PURE__ */ (0, import_jsx_runtime271.jsx)(MenuItemDescription, { children: description })
13873
+ /* @__PURE__ */ (0, import_jsx_runtime272.jsx)(MenuItemLabel, { children: label }),
13874
+ /* @__PURE__ */ (0, import_jsx_runtime272.jsx)(MenuItemDescription, { children: description })
13847
13875
  ]
13848
13876
  }
13849
13877
  ),
13850
- /* @__PURE__ */ (0, import_jsx_runtime271.jsx)(StyledMobileSubMenuItems, { children: isExpanded ? children : null })
13878
+ /* @__PURE__ */ (0, import_jsx_runtime272.jsx)(StyledMobileSubMenuItems, { children: isExpanded ? children : null })
13851
13879
  ] });
13852
13880
  };
13853
13881
  SubMenu.displayName = "SubMenu_UI";
@@ -13855,15 +13883,15 @@ SubMenu.displayName = "SubMenu_UI";
13855
13883
  // src/components/Menu/MenuItem.tsx
13856
13884
  var import_react67 = require("react");
13857
13885
  var import_react_dropdown_menu4 = require("@radix-ui/react-dropdown-menu");
13858
- var import_jsx_runtime272 = require("react/jsx-runtime");
13886
+ var import_jsx_runtime273 = require("react/jsx-runtime");
13859
13887
  var MenuItem = (0, import_react67.forwardRef)(
13860
13888
  ({ onSelect = () => null, ...props }, ref) => {
13861
- return /* @__PURE__ */ (0, import_jsx_runtime272.jsx)(
13889
+ return /* @__PURE__ */ (0, import_jsx_runtime273.jsx)(
13862
13890
  import_react_dropdown_menu4.DropdownMenuItem,
13863
13891
  {
13864
13892
  asChild: true,
13865
13893
  onSelect,
13866
- children: /* @__PURE__ */ (0, import_jsx_runtime272.jsx)(
13894
+ children: /* @__PURE__ */ (0, import_jsx_runtime273.jsx)(
13867
13895
  MenuItemButton,
13868
13896
  {
13869
13897
  ...props,
@@ -13879,19 +13907,19 @@ MenuItem.displayName = "MenuItem_UI";
13879
13907
 
13880
13908
  // src/components/Menu/MenuRadioGroup.tsx
13881
13909
  var import_react_dropdown_menu5 = require("@radix-ui/react-dropdown-menu");
13882
- var import_jsx_runtime273 = require("react/jsx-runtime");
13910
+ var import_jsx_runtime274 = require("react/jsx-runtime");
13883
13911
  var MenuRadioGroup = ({ children, ...props }) => {
13884
- return /* @__PURE__ */ (0, import_jsx_runtime273.jsx)(import_react_dropdown_menu5.DropdownMenuRadioGroup, { ...props, children });
13912
+ return /* @__PURE__ */ (0, import_jsx_runtime274.jsx)(import_react_dropdown_menu5.DropdownMenuRadioGroup, { ...props, children });
13885
13913
  };
13886
13914
  MenuRadioGroup.displayName = "MenuRadioGroup_UI";
13887
13915
 
13888
13916
  // src/components/Menu/RadioMenuItem.tsx
13889
13917
  var import_react_dropdown_menu6 = require("@radix-ui/react-dropdown-menu");
13890
- var import_jsx_runtime274 = require("react/jsx-runtime");
13918
+ var import_jsx_runtime275 = require("react/jsx-runtime");
13891
13919
  var RadioMenuItem = ({
13892
13920
  onSelect,
13893
13921
  value,
13894
- indicator = /* @__PURE__ */ (0, import_jsx_runtime274.jsx)(
13922
+ indicator = /* @__PURE__ */ (0, import_jsx_runtime275.jsx)(
13895
13923
  Icon,
13896
13924
  {
13897
13925
  size: "sm",
@@ -13901,17 +13929,17 @@ var RadioMenuItem = ({
13901
13929
  ...props
13902
13930
  }) => {
13903
13931
  const extraProps = onSelect ? { onSelect } : {};
13904
- return /* @__PURE__ */ (0, import_jsx_runtime274.jsx)(
13932
+ return /* @__PURE__ */ (0, import_jsx_runtime275.jsx)(
13905
13933
  import_react_dropdown_menu6.DropdownMenuRadioItem,
13906
13934
  {
13907
13935
  ...extraProps,
13908
13936
  asChild: true,
13909
13937
  value,
13910
- children: /* @__PURE__ */ (0, import_jsx_runtime274.jsx)(
13938
+ children: /* @__PURE__ */ (0, import_jsx_runtime275.jsx)(
13911
13939
  MenuItemButton,
13912
13940
  {
13913
13941
  ...props,
13914
- rightIcon: /* @__PURE__ */ (0, import_jsx_runtime274.jsx)(import_react_dropdown_menu6.DropdownMenuItemIndicator, { children: indicator })
13942
+ rightIcon: /* @__PURE__ */ (0, import_jsx_runtime275.jsx)(import_react_dropdown_menu6.DropdownMenuItemIndicator, { children: indicator })
13915
13943
  }
13916
13944
  )
13917
13945
  }
@@ -13922,9 +13950,9 @@ RadioMenuItem.displayName = "RadioMenuItem_UI";
13922
13950
  // src/components/Menu/CheckboxMenuItem.tsx
13923
13951
  var import_react_dropdown_menu7 = require("@radix-ui/react-dropdown-menu");
13924
13952
  var import_type_guards48 = require("@wistia/type-guards");
13925
- var import_jsx_runtime275 = require("react/jsx-runtime");
13953
+ var import_jsx_runtime276 = require("react/jsx-runtime");
13926
13954
  var CheckboxIndicator = ({ checked, ...props }) => {
13927
- return checked ? /* @__PURE__ */ (0, import_jsx_runtime275.jsxs)(
13955
+ return checked ? /* @__PURE__ */ (0, import_jsx_runtime276.jsxs)(
13928
13956
  "svg",
13929
13957
  {
13930
13958
  ...props,
@@ -13934,14 +13962,14 @@ var CheckboxIndicator = ({ checked, ...props }) => {
13934
13962
  width: "24",
13935
13963
  xmlns: "http://www.w3.org/2000/svg",
13936
13964
  children: [
13937
- /* @__PURE__ */ (0, import_jsx_runtime275.jsx)(
13965
+ /* @__PURE__ */ (0, import_jsx_runtime276.jsx)(
13938
13966
  "path",
13939
13967
  {
13940
13968
  d: "m4 8c0-2.20914 1.79086-4 4-4h8c2.2091 0 4 1.79086 4 4v8c0 2.2091-1.7909 4-4 4h-8c-2.20914 0-4-1.7909-4-4z",
13941
13969
  fill: "#2949e5"
13942
13970
  }
13943
13971
  ),
13944
- /* @__PURE__ */ (0, import_jsx_runtime275.jsx)(
13972
+ /* @__PURE__ */ (0, import_jsx_runtime276.jsx)(
13945
13973
  "path",
13946
13974
  {
13947
13975
  d: "m10.4728 15.1931-3.09523-3.1131c-.18596-.187-.18596-.4902 0-.6773l.67341-.6773c.18596-.187.48749-.187.67344 0l2.08508 2.0971 4.4661-4.49174c.1859-.18703.4875-.18703.6734 0l.6734.67731c.186.18703.186.49027 0 .67731l-5.4762 5.50772c-.1859.187-.4874.187-.6734 0z",
@@ -13950,7 +13978,7 @@ var CheckboxIndicator = ({ checked, ...props }) => {
13950
13978
  )
13951
13979
  ]
13952
13980
  }
13953
- ) : /* @__PURE__ */ (0, import_jsx_runtime275.jsxs)(
13981
+ ) : /* @__PURE__ */ (0, import_jsx_runtime276.jsxs)(
13954
13982
  "svg",
13955
13983
  {
13956
13984
  ...props,
@@ -13960,14 +13988,14 @@ var CheckboxIndicator = ({ checked, ...props }) => {
13960
13988
  width: "24",
13961
13989
  xmlns: "http://www.w3.org/2000/svg",
13962
13990
  children: [
13963
- /* @__PURE__ */ (0, import_jsx_runtime275.jsx)(
13991
+ /* @__PURE__ */ (0, import_jsx_runtime276.jsx)(
13964
13992
  "path",
13965
13993
  {
13966
13994
  d: "m8 4.5h8c1.933 0 3.5 1.567 3.5 3.5v8c0 1.933-1.567 3.5-3.5 3.5h-8c-1.933 0-3.5-1.567-3.5-3.5v-8c0-1.933 1.567-3.5 3.5-3.5z",
13967
13995
  fill: "#fcfcfd"
13968
13996
  }
13969
13997
  ),
13970
- /* @__PURE__ */ (0, import_jsx_runtime275.jsx)(
13998
+ /* @__PURE__ */ (0, import_jsx_runtime276.jsx)(
13971
13999
  "path",
13972
14000
  {
13973
14001
  d: "m8 4.5h8c1.933 0 3.5 1.567 3.5 3.5v8c0 1.933-1.567 3.5-3.5 3.5h-8c-1.933 0-3.5-1.567-3.5-3.5v-8c0-1.933 1.567-3.5 3.5-3.5z",
@@ -13984,19 +14012,19 @@ var CheckboxMenuItem = ({
13984
14012
  onCheckedChange,
13985
14013
  ...props
13986
14014
  }) => {
13987
- return /* @__PURE__ */ (0, import_jsx_runtime275.jsx)(
14015
+ return /* @__PURE__ */ (0, import_jsx_runtime276.jsx)(
13988
14016
  import_react_dropdown_menu7.DropdownMenuCheckboxItem,
13989
14017
  {
13990
14018
  asChild: true,
13991
14019
  checked,
13992
14020
  onCheckedChange,
13993
14021
  onSelect,
13994
- children: /* @__PURE__ */ (0, import_jsx_runtime275.jsx)(
14022
+ children: /* @__PURE__ */ (0, import_jsx_runtime276.jsx)(
13995
14023
  MenuItemButton,
13996
14024
  {
13997
14025
  ...props,
13998
- leftIcon: (0, import_type_guards48.isNotNil)(props.icon) ? props.icon : /* @__PURE__ */ (0, import_jsx_runtime275.jsx)(CheckboxIndicator, { checked }),
13999
- rightIcon: (0, import_type_guards48.isNotNil)(props.icon) ? /* @__PURE__ */ (0, import_jsx_runtime275.jsx)(import_react_dropdown_menu7.DropdownMenuItemIndicator, { children: /* @__PURE__ */ (0, import_jsx_runtime275.jsx)(Icon, { type: "checkmark" }) }) : void 0
14026
+ leftIcon: (0, import_type_guards48.isNotNil)(props.icon) ? props.icon : /* @__PURE__ */ (0, import_jsx_runtime276.jsx)(CheckboxIndicator, { checked }),
14027
+ rightIcon: (0, import_type_guards48.isNotNil)(props.icon) ? /* @__PURE__ */ (0, import_jsx_runtime276.jsx)(import_react_dropdown_menu7.DropdownMenuItemIndicator, { children: /* @__PURE__ */ (0, import_jsx_runtime276.jsx)(Icon, { type: "checkmark" }) }) : void 0
14000
14028
  }
14001
14029
  )
14002
14030
  }
@@ -14007,17 +14035,17 @@ CheckboxMenuItem.displayName = "CheckboxMenuItem_UI";
14007
14035
  // src/components/Menu/FilterMenu.tsx
14008
14036
  var import_react68 = require("react");
14009
14037
  var import_react_dropdown_menu8 = require("@radix-ui/react-dropdown-menu");
14010
- var import_jsx_runtime276 = require("react/jsx-runtime");
14038
+ var import_jsx_runtime277 = require("react/jsx-runtime");
14011
14039
  var FilterMenuItem = CheckboxMenuItem;
14012
14040
  var FilterMenu = (0, import_react68.forwardRef)(
14013
14041
  ({ value, onChange, searchValue, onSearchValueChange, children, ...props }, ref) => {
14014
- return /* @__PURE__ */ (0, import_jsx_runtime276.jsxs)(
14042
+ return /* @__PURE__ */ (0, import_jsx_runtime277.jsxs)(
14015
14043
  Menu,
14016
14044
  {
14017
14045
  ...props,
14018
14046
  ref,
14019
14047
  children: [
14020
- /* @__PURE__ */ (0, import_jsx_runtime276.jsx)(
14048
+ /* @__PURE__ */ (0, import_jsx_runtime277.jsx)(
14021
14049
  Card,
14022
14050
  {
14023
14051
  alignItems: "flex-end",
@@ -14032,7 +14060,7 @@ var FilterMenu = (0, import_react68.forwardRef)(
14032
14060
  right: 0,
14033
14061
  margin: "1px"
14034
14062
  },
14035
- children: /* @__PURE__ */ (0, import_jsx_runtime276.jsx)(
14063
+ children: /* @__PURE__ */ (0, import_jsx_runtime277.jsx)(
14036
14064
  Input,
14037
14065
  {
14038
14066
  autoFocus: true,
@@ -14058,7 +14086,7 @@ var FilterMenu = (0, import_react68.forwardRef)(
14058
14086
  )
14059
14087
  }
14060
14088
  ),
14061
- /* @__PURE__ */ (0, import_jsx_runtime276.jsx)(
14089
+ /* @__PURE__ */ (0, import_jsx_runtime277.jsx)(
14062
14090
  MenuItem,
14063
14091
  {
14064
14092
  disabled: true,
@@ -14066,13 +14094,13 @@ var FilterMenu = (0, import_react68.forwardRef)(
14066
14094
  children: " "
14067
14095
  }
14068
14096
  ),
14069
- import_react68.Children.toArray(children).length > 0 ? children : /* @__PURE__ */ (0, import_jsx_runtime276.jsx)(MenuItem, { disabled: true, children: "No results found" }),
14070
- value.length > 0 && /* @__PURE__ */ (0, import_jsx_runtime276.jsx)(
14097
+ import_react68.Children.toArray(children).length > 0 ? children : /* @__PURE__ */ (0, import_jsx_runtime277.jsx)(MenuItem, { disabled: true, children: "No results found" }),
14098
+ value.length > 0 && /* @__PURE__ */ (0, import_jsx_runtime277.jsx)(
14071
14099
  import_react_dropdown_menu8.DropdownMenuItem,
14072
14100
  {
14073
14101
  disabled: true,
14074
14102
  style: { marginTop: "24px" },
14075
- children: /* @__PURE__ */ (0, import_jsx_runtime276.jsx)(
14103
+ children: /* @__PURE__ */ (0, import_jsx_runtime277.jsx)(
14076
14104
  Card,
14077
14105
  {
14078
14106
  alignItems: "flex-end",
@@ -14087,7 +14115,7 @@ var FilterMenu = (0, import_react68.forwardRef)(
14087
14115
  right: 0,
14088
14116
  margin: "1px"
14089
14117
  },
14090
- children: /* @__PURE__ */ (0, import_jsx_runtime276.jsx)(
14118
+ children: /* @__PURE__ */ (0, import_jsx_runtime277.jsx)(
14091
14119
  Button,
14092
14120
  {
14093
14121
  onClick: () => onChange([]),
@@ -14108,36 +14136,36 @@ FilterMenu.displayName = "FilterMenu_UI";
14108
14136
 
14109
14137
  // src/components/Modal/Modal.tsx
14110
14138
  var import_react71 = require("react");
14111
- var import_styled_components88 = __toESM(require("styled-components"));
14139
+ var import_styled_components89 = __toESM(require("styled-components"));
14112
14140
  var import_react_dialog5 = require("@radix-ui/react-dialog");
14113
14141
  var import_type_guards50 = require("@wistia/type-guards");
14114
14142
 
14115
14143
  // src/components/Modal/ModalHeader.tsx
14116
- var import_styled_components85 = __toESM(require("styled-components"));
14144
+ var import_styled_components86 = __toESM(require("styled-components"));
14117
14145
  var import_react_dialog2 = require("@radix-ui/react-dialog");
14118
14146
 
14119
14147
  // src/components/Modal/ModalCloseButton.tsx
14120
- var import_styled_components84 = __toESM(require("styled-components"));
14148
+ var import_styled_components85 = __toESM(require("styled-components"));
14121
14149
  var import_react_dialog = require("@radix-ui/react-dialog");
14122
- var import_jsx_runtime277 = require("react/jsx-runtime");
14123
- var CloseButton = (0, import_styled_components84.default)(import_react_dialog.Close)`
14150
+ var import_jsx_runtime278 = require("react/jsx-runtime");
14151
+ var CloseButton = (0, import_styled_components85.default)(import_react_dialog.Close)`
14124
14152
  align-self: start;
14125
14153
  `;
14126
14154
  var ModalCloseButton = () => {
14127
- return /* @__PURE__ */ (0, import_jsx_runtime277.jsx)(CloseButton, { asChild: true, children: /* @__PURE__ */ (0, import_jsx_runtime277.jsx)(
14155
+ return /* @__PURE__ */ (0, import_jsx_runtime278.jsx)(CloseButton, { asChild: true, children: /* @__PURE__ */ (0, import_jsx_runtime278.jsx)(
14128
14156
  IconButton,
14129
14157
  {
14130
14158
  label: "Dismiss modal",
14131
14159
  size: "sm",
14132
14160
  variant: "ghost",
14133
- children: /* @__PURE__ */ (0, import_jsx_runtime277.jsx)(Icon, { type: "close" })
14161
+ children: /* @__PURE__ */ (0, import_jsx_runtime278.jsx)(Icon, { type: "close" })
14134
14162
  }
14135
14163
  ) });
14136
14164
  };
14137
14165
 
14138
14166
  // src/components/Modal/ModalHeader.tsx
14139
- var import_jsx_runtime278 = require("react/jsx-runtime");
14140
- var Header = import_styled_components85.default.header`
14167
+ var import_jsx_runtime279 = require("react/jsx-runtime");
14168
+ var Header = import_styled_components86.default.header`
14141
14169
  display: flex;
14142
14170
  order: 1;
14143
14171
  gap: var(--wui-space-01);
@@ -14148,7 +14176,7 @@ var Header = import_styled_components85.default.header`
14148
14176
  margin: 0 0 var(--wui-space-03);
14149
14177
  }
14150
14178
  `;
14151
- var Title = (0, import_styled_components85.default)(import_react_dialog2.Title)`
14179
+ var Title = (0, import_styled_components86.default)(import_react_dialog2.Title)`
14152
14180
  font-family: var(--wui-typography-heading-2-family);
14153
14181
  line-height: var(--wui-typography-heading-2-line-height);
14154
14182
  font-size: var(--wui-typography-heading-2-size);
@@ -14159,16 +14187,16 @@ var ModalHeader = ({
14159
14187
  hideTitle,
14160
14188
  hideCloseButton
14161
14189
  }) => {
14162
- const TitleComponent = hideTitle ? /* @__PURE__ */ (0, import_jsx_runtime278.jsx)(ScreenReaderOnly, { children: /* @__PURE__ */ (0, import_jsx_runtime278.jsx)(Title, { children: title }) }) : /* @__PURE__ */ (0, import_jsx_runtime278.jsx)(Title, { children: title });
14163
- return /* @__PURE__ */ (0, import_jsx_runtime278.jsxs)(Header, { $hideTitle: hideTitle, children: [
14190
+ const TitleComponent = hideTitle ? /* @__PURE__ */ (0, import_jsx_runtime279.jsx)(ScreenReaderOnly, { children: /* @__PURE__ */ (0, import_jsx_runtime279.jsx)(Title, { children: title }) }) : /* @__PURE__ */ (0, import_jsx_runtime279.jsx)(Title, { children: title });
14191
+ return /* @__PURE__ */ (0, import_jsx_runtime279.jsxs)(Header, { $hideTitle: hideTitle, children: [
14164
14192
  TitleComponent,
14165
- hideCloseButton ? null : /* @__PURE__ */ (0, import_jsx_runtime278.jsx)(ModalCloseButton, {})
14193
+ hideCloseButton ? null : /* @__PURE__ */ (0, import_jsx_runtime279.jsx)(ModalCloseButton, {})
14166
14194
  ] });
14167
14195
  };
14168
14196
 
14169
14197
  // src/components/Modal/ModalContent.tsx
14170
14198
  var import_react70 = require("react");
14171
- var import_styled_components86 = __toESM(require("styled-components"));
14199
+ var import_styled_components87 = __toESM(require("styled-components"));
14172
14200
  var import_react_dialog3 = require("@radix-ui/react-dialog");
14173
14201
 
14174
14202
  // src/private/hooks/useFocusRestore/useFocusRestore.ts
@@ -14191,8 +14219,8 @@ var useFocusRestore = () => {
14191
14219
  };
14192
14220
 
14193
14221
  // src/components/Modal/ModalContent.tsx
14194
- var import_jsx_runtime279 = require("react/jsx-runtime");
14195
- var modalEnter = import_styled_components86.keyframes`
14222
+ var import_jsx_runtime280 = require("react/jsx-runtime");
14223
+ var modalEnter = import_styled_components87.keyframes`
14196
14224
  from {
14197
14225
  opacity: 0;
14198
14226
  transform: translateX(-50%) translateY(calc(var(--wui-modal-translate-y) + 24px));
@@ -14203,7 +14231,7 @@ var modalEnter = import_styled_components86.keyframes`
14203
14231
  transform: translateX(-50%) translateY(var(--wui-modal-translate-y));
14204
14232
  }
14205
14233
  `;
14206
- var modalExit = import_styled_components86.keyframes`
14234
+ var modalExit = import_styled_components87.keyframes`
14207
14235
  from {
14208
14236
  opacity: 1;
14209
14237
  transform: translateX(-50%) translateY(var(--wui-modal-translate-y));
@@ -14214,7 +14242,7 @@ var modalExit = import_styled_components86.keyframes`
14214
14242
  transform: translateX(-50%) translateY(calc(var(--wui-modal-translate-y) + 24px));
14215
14243
  }
14216
14244
  `;
14217
- var centeredModalStyles = import_styled_components86.css`
14245
+ var centeredModalStyles = import_styled_components87.css`
14218
14246
  --wui-modal-screen-offset: var(--wui-space-05);
14219
14247
  --wui-modal-translate-y: -50%;
14220
14248
 
@@ -14230,7 +14258,7 @@ var centeredModalStyles = import_styled_components86.css`
14230
14258
  animation: ${modalExit} var(--wui-motion-duration-03) var(--wui-motion-ease-out);
14231
14259
  }
14232
14260
  `;
14233
- var fixedTopModalStyles = import_styled_components86.css`
14261
+ var fixedTopModalStyles = import_styled_components87.css`
14234
14262
  --wui-modal-screen-offset-top: 15vh;
14235
14263
  --wui-modal-screen-offset-bottom: 5vh;
14236
14264
  --wui-modal-translate-y: 0%;
@@ -14249,7 +14277,7 @@ var fixedTopModalStyles = import_styled_components86.css`
14249
14277
  animation: ${modalExit} var(--wui-motion-duration-03) var(--wui-motion-ease-out);
14250
14278
  }
14251
14279
  `;
14252
- var slideInRight = import_styled_components86.keyframes`
14280
+ var slideInRight = import_styled_components87.keyframes`
14253
14281
  from {
14254
14282
  opacity: 0;
14255
14283
  transform: translateX(100%);
@@ -14260,7 +14288,7 @@ var slideInRight = import_styled_components86.keyframes`
14260
14288
  transform: translateX(0);
14261
14289
  }
14262
14290
  `;
14263
- var slideOutRight = import_styled_components86.keyframes`
14291
+ var slideOutRight = import_styled_components87.keyframes`
14264
14292
  from {
14265
14293
  opacity: 1;
14266
14294
  transform: translateX(0);
@@ -14271,7 +14299,7 @@ var slideOutRight = import_styled_components86.keyframes`
14271
14299
  transform: translateX(100%);
14272
14300
  }
14273
14301
  `;
14274
- var rightSidePanelModalStyles = import_styled_components86.css`
14302
+ var rightSidePanelModalStyles = import_styled_components87.css`
14275
14303
  --wui-modal-screen-offset: var(--wui-space-05);
14276
14304
 
14277
14305
  height: calc(100vh - var(--wui-modal-screen-offset) * 2);
@@ -14289,7 +14317,7 @@ var positionStyleMap = {
14289
14317
  "fixed-top": fixedTopModalStyles,
14290
14318
  "right-side-panel": rightSidePanelModalStyles
14291
14319
  };
14292
- var StyledModalContent = (0, import_styled_components86.default)(import_react_dialog3.Content)`
14320
+ var StyledModalContent = (0, import_styled_components87.default)(import_react_dialog3.Content)`
14293
14321
  position: fixed;
14294
14322
  display: flex;
14295
14323
  flex-direction: column;
@@ -14320,7 +14348,7 @@ var StyledModalContent = (0, import_styled_components86.default)(import_react_di
14320
14348
  var ModalContent = (0, import_react70.forwardRef)(
14321
14349
  ({ width, positionVariant = "fixed-top", children, ...props }, ref) => {
14322
14350
  useFocusRestore();
14323
- return /* @__PURE__ */ (0, import_jsx_runtime279.jsx)(
14351
+ return /* @__PURE__ */ (0, import_jsx_runtime280.jsx)(
14324
14352
  StyledModalContent,
14325
14353
  {
14326
14354
  ref,
@@ -14336,8 +14364,8 @@ var ModalContent = (0, import_react70.forwardRef)(
14336
14364
 
14337
14365
  // src/components/Modal/ModalOverlay.tsx
14338
14366
  var import_react_dialog4 = require("@radix-ui/react-dialog");
14339
- var import_styled_components87 = __toESM(require("styled-components"));
14340
- var backdropShow = import_styled_components87.keyframes`
14367
+ var import_styled_components88 = __toESM(require("styled-components"));
14368
+ var backdropShow = import_styled_components88.keyframes`
14341
14369
  from {
14342
14370
  opacity: 0;
14343
14371
  }
@@ -14346,7 +14374,7 @@ var backdropShow = import_styled_components87.keyframes`
14346
14374
  opacity: 1;
14347
14375
  }
14348
14376
  `;
14349
- var backdropHide = import_styled_components87.keyframes`
14377
+ var backdropHide = import_styled_components88.keyframes`
14350
14378
  from {
14351
14379
  opacity: 1;
14352
14380
  }
@@ -14355,7 +14383,7 @@ var backdropHide = import_styled_components87.keyframes`
14355
14383
  opacity: 0;
14356
14384
  }
14357
14385
  `;
14358
- var ModalOverlay = (0, import_styled_components87.default)(import_react_dialog4.DialogOverlay)`
14386
+ var ModalOverlay = (0, import_styled_components88.default)(import_react_dialog4.DialogOverlay)`
14359
14387
  animation: ${backdropShow} var(--wui-motion-duration-02);
14360
14388
  background: var(--wui-color-backdrop);
14361
14389
  inset: 0;
@@ -14368,9 +14396,9 @@ var ModalOverlay = (0, import_styled_components87.default)(import_react_dialog4.
14368
14396
  `;
14369
14397
 
14370
14398
  // src/components/Modal/Modal.tsx
14371
- var import_jsx_runtime280 = require("react/jsx-runtime");
14399
+ var import_jsx_runtime281 = require("react/jsx-runtime");
14372
14400
  var DEFAULT_MODAL_WIDTH = "532px";
14373
- var ModalBody = import_styled_components88.default.div`
14401
+ var ModalBody = import_styled_components89.default.div`
14374
14402
  flex-direction: column;
14375
14403
  display: flex;
14376
14404
  flex: 1 0 0;
@@ -14389,7 +14417,7 @@ var Modal = (0, import_react71.forwardRef)(
14389
14417
  width = DEFAULT_MODAL_WIDTH,
14390
14418
  ...props
14391
14419
  }, ref) => {
14392
- return /* @__PURE__ */ (0, import_jsx_runtime280.jsx)(
14420
+ return /* @__PURE__ */ (0, import_jsx_runtime281.jsx)(
14393
14421
  import_react_dialog5.Root,
14394
14422
  {
14395
14423
  onOpenChange: (open2) => {
@@ -14398,9 +14426,9 @@ var Modal = (0, import_react71.forwardRef)(
14398
14426
  }
14399
14427
  },
14400
14428
  open: isOpen,
14401
- children: /* @__PURE__ */ (0, import_jsx_runtime280.jsxs)(import_react_dialog5.Portal, { children: [
14402
- /* @__PURE__ */ (0, import_jsx_runtime280.jsx)(ModalOverlay, {}),
14403
- /* @__PURE__ */ (0, import_jsx_runtime280.jsxs)(
14429
+ children: /* @__PURE__ */ (0, import_jsx_runtime281.jsxs)(import_react_dialog5.Portal, { children: [
14430
+ /* @__PURE__ */ (0, import_jsx_runtime281.jsx)(ModalOverlay, {}),
14431
+ /* @__PURE__ */ (0, import_jsx_runtime281.jsxs)(
14404
14432
  ModalContent,
14405
14433
  {
14406
14434
  ref,
@@ -14416,8 +14444,8 @@ var Modal = (0, import_react71.forwardRef)(
14416
14444
  width,
14417
14445
  ...props,
14418
14446
  children: [
14419
- /* @__PURE__ */ (0, import_jsx_runtime280.jsx)(ModalBody, { children }),
14420
- /* @__PURE__ */ (0, import_jsx_runtime280.jsx)(
14447
+ /* @__PURE__ */ (0, import_jsx_runtime281.jsx)(ModalBody, { children }),
14448
+ /* @__PURE__ */ (0, import_jsx_runtime281.jsx)(
14421
14449
  ModalHeader,
14422
14450
  {
14423
14451
  hideCloseButton,
@@ -14437,7 +14465,7 @@ Modal.displayName = "Modal_UI";
14437
14465
 
14438
14466
  // src/components/Popover/Popover.tsx
14439
14467
  var import_react_popover5 = require("@radix-ui/react-popover");
14440
- var import_styled_components90 = __toESM(require("styled-components"));
14468
+ var import_styled_components91 = __toESM(require("styled-components"));
14441
14469
 
14442
14470
  // src/private/helpers/getControls/getControlProps.tsx
14443
14471
  var import_type_guards51 = require("@wistia/type-guards");
@@ -14447,12 +14475,12 @@ var getControlProps = (isOpen, onOpenChange) => {
14447
14475
 
14448
14476
  // src/components/Popover/PopoverArrow.tsx
14449
14477
  var import_react_popover4 = require("@radix-ui/react-popover");
14450
- var import_styled_components89 = __toESM(require("styled-components"));
14451
- var import_jsx_runtime281 = require("react/jsx-runtime");
14452
- var StyledPath = import_styled_components89.default.path`
14478
+ var import_styled_components90 = __toESM(require("styled-components"));
14479
+ var import_jsx_runtime282 = require("react/jsx-runtime");
14480
+ var StyledPath = import_styled_components90.default.path`
14453
14481
  fill: var(--wui-color-border-secondary);
14454
14482
  `;
14455
- var circleAnimation = import_styled_components89.keyframes`
14483
+ var circleAnimation = import_styled_components90.keyframes`
14456
14484
  0% {
14457
14485
  opacity: var(--wui-popover-arrow-circle-starting-opacity);
14458
14486
  }
@@ -14460,7 +14488,7 @@ var circleAnimation = import_styled_components89.keyframes`
14460
14488
  opacity: 0;
14461
14489
  }
14462
14490
  `;
14463
- var StyledCircle = import_styled_components89.default.circle`
14491
+ var StyledCircle = import_styled_components90.default.circle`
14464
14492
  stroke: var(--wui-color-border-active);
14465
14493
  animation-duration: 2s;
14466
14494
  animation-iteration-count: infinite;
@@ -14481,13 +14509,13 @@ var StyledCircle = import_styled_components89.default.circle`
14481
14509
  }
14482
14510
 
14483
14511
  @media (prefers-reduced-motion: no-preference) {
14484
- ${({ $isAnimated }) => $isAnimated && import_styled_components89.css`
14512
+ ${({ $isAnimated }) => $isAnimated && import_styled_components90.css`
14485
14513
  animation-name: ${circleAnimation};
14486
14514
  `}
14487
14515
  }
14488
14516
  `;
14489
14517
  var PopoverArrow = ({ isAnimated }) => {
14490
- return /* @__PURE__ */ (0, import_jsx_runtime281.jsx)(import_react_popover4.PopoverArrow, { asChild: true, children: /* @__PURE__ */ (0, import_jsx_runtime281.jsxs)(
14518
+ return /* @__PURE__ */ (0, import_jsx_runtime282.jsx)(import_react_popover4.PopoverArrow, { asChild: true, children: /* @__PURE__ */ (0, import_jsx_runtime282.jsxs)(
14491
14519
  "svg",
14492
14520
  {
14493
14521
  fill: "none",
@@ -14496,8 +14524,8 @@ var PopoverArrow = ({ isAnimated }) => {
14496
14524
  width: "48",
14497
14525
  xmlns: "http://www.w3.org/2000/svg",
14498
14526
  children: [
14499
- /* @__PURE__ */ (0, import_jsx_runtime281.jsx)(StyledPath, { d: "M24 26.6667C21.0545 26.6667 18.6667 29.0545 18.6667 32C18.6667 34.9455 21.0545 37.3333 24 37.3333C26.9455 37.3333 29.3333 34.9455 29.3333 32C29.3333 29.0545 26.9455 26.6667 24 26.6667ZM23 0V32H25V0H23Z" }),
14500
- /* @__PURE__ */ (0, import_jsx_runtime281.jsx)(
14527
+ /* @__PURE__ */ (0, import_jsx_runtime282.jsx)(StyledPath, { d: "M24 26.6667C21.0545 26.6667 18.6667 29.0545 18.6667 32C18.6667 34.9455 21.0545 37.3333 24 37.3333C26.9455 37.3333 29.3333 34.9455 29.3333 32C29.3333 29.0545 26.9455 26.6667 24 26.6667ZM23 0V32H25V0H23Z" }),
14528
+ /* @__PURE__ */ (0, import_jsx_runtime282.jsx)(
14501
14529
  StyledCircle,
14502
14530
  {
14503
14531
  $isAnimated: isAnimated,
@@ -14508,7 +14536,7 @@ var PopoverArrow = ({ isAnimated }) => {
14508
14536
  strokeWidth: "4"
14509
14537
  }
14510
14538
  ),
14511
- /* @__PURE__ */ (0, import_jsx_runtime281.jsx)(
14539
+ /* @__PURE__ */ (0, import_jsx_runtime282.jsx)(
14512
14540
  StyledCircle,
14513
14541
  {
14514
14542
  $isAnimated: isAnimated,
@@ -14526,11 +14554,11 @@ var PopoverArrow = ({ isAnimated }) => {
14526
14554
  PopoverArrow.displayName = "PopoverArrow_UI";
14527
14555
 
14528
14556
  // src/components/Popover/Popover.tsx
14529
- var import_jsx_runtime282 = require("react/jsx-runtime");
14530
- var StyledContent2 = (0, import_styled_components90.default)(import_react_popover5.Content)`
14557
+ var import_jsx_runtime283 = require("react/jsx-runtime");
14558
+ var StyledContent2 = (0, import_styled_components91.default)(import_react_popover5.Content)`
14531
14559
  z-index: var(--wui-zindex-popover);
14532
14560
  ${({ $colorScheme }) => getColorScheme($colorScheme)};
14533
- ${({ $unstyled }) => !$unstyled && import_styled_components90.css`
14561
+ ${({ $unstyled }) => !$unstyled && import_styled_components91.css`
14534
14562
  border-radius: var(--wui-border-radius-02);
14535
14563
  padding: var(--wui-space-04);
14536
14564
  max-width: var(--wui-popover-max-width, 320px);
@@ -14566,9 +14594,9 @@ var Popover2 = ({
14566
14594
  "--wui-popover-max-width": maxWidth,
14567
14595
  "--wui-popover-max-height": maxHeight
14568
14596
  };
14569
- return /* @__PURE__ */ (0, import_jsx_runtime282.jsxs)(import_react_popover5.Root, { ...getControlProps(isOpen, onOpenChange), children: [
14570
- /* @__PURE__ */ (0, import_jsx_runtime282.jsx)(import_react_popover5.Trigger, { asChild: true, children: trigger }),
14571
- /* @__PURE__ */ (0, import_jsx_runtime282.jsx)(import_react_popover5.Portal, { children: /* @__PURE__ */ (0, import_jsx_runtime282.jsxs)(
14597
+ return /* @__PURE__ */ (0, import_jsx_runtime283.jsxs)(import_react_popover5.Root, { ...getControlProps(isOpen, onOpenChange), children: [
14598
+ /* @__PURE__ */ (0, import_jsx_runtime283.jsx)(import_react_popover5.Trigger, { asChild: true, children: trigger }),
14599
+ /* @__PURE__ */ (0, import_jsx_runtime283.jsx)(import_react_popover5.Portal, { children: /* @__PURE__ */ (0, import_jsx_runtime283.jsxs)(
14572
14600
  StyledContent2,
14573
14601
  {
14574
14602
  $colorScheme: colorScheme,
@@ -14577,17 +14605,17 @@ var Popover2 = ({
14577
14605
  $unstyled: unstyled,
14578
14606
  style,
14579
14607
  children: [
14580
- !hideCloseButton && /* @__PURE__ */ (0, import_jsx_runtime282.jsx)(import_react_popover5.Close, { asChild: true, children: /* @__PURE__ */ (0, import_jsx_runtime282.jsx)(
14608
+ !hideCloseButton && /* @__PURE__ */ (0, import_jsx_runtime283.jsx)(import_react_popover5.Close, { asChild: true, children: /* @__PURE__ */ (0, import_jsx_runtime283.jsx)(
14581
14609
  IconButton,
14582
14610
  {
14583
14611
  "data-wui-popover-close": true,
14584
14612
  label: "Close",
14585
14613
  variant: "ghost",
14586
- children: /* @__PURE__ */ (0, import_jsx_runtime282.jsx)(Icon, { type: "close" })
14614
+ children: /* @__PURE__ */ (0, import_jsx_runtime283.jsx)(Icon, { type: "close" })
14587
14615
  }
14588
14616
  ) }),
14589
- withArrow ? /* @__PURE__ */ (0, import_jsx_runtime282.jsx)(PopoverArrow, { isAnimated }) : null,
14590
- /* @__PURE__ */ (0, import_jsx_runtime282.jsx)("div", { children })
14617
+ withArrow ? /* @__PURE__ */ (0, import_jsx_runtime283.jsx)(PopoverArrow, { isAnimated }) : null,
14618
+ /* @__PURE__ */ (0, import_jsx_runtime283.jsx)("div", { children })
14591
14619
  ]
14592
14620
  }
14593
14621
  ) })
@@ -14596,11 +14624,11 @@ var Popover2 = ({
14596
14624
  Popover2.displayName = "Popover_UI";
14597
14625
 
14598
14626
  // src/components/ProgressBar/ProgressBar.tsx
14599
- var import_styled_components91 = __toESM(require("styled-components"));
14627
+ var import_styled_components92 = __toESM(require("styled-components"));
14600
14628
  var import_react_progress = require("@radix-ui/react-progress");
14601
14629
  var import_type_guards52 = require("@wistia/type-guards");
14602
- var import_jsx_runtime283 = require("react/jsx-runtime");
14603
- var ProgressBarWrapper = import_styled_components91.default.div`
14630
+ var import_jsx_runtime284 = require("react/jsx-runtime");
14631
+ var ProgressBarWrapper = import_styled_components92.default.div`
14604
14632
  --progress-bar-height: 8px;
14605
14633
  --progress-bar-indicator-color: var(--wui-color-bg-fill);
14606
14634
  --progress-bar-background-color: var(--wui-color-bg-surface-secondary);
@@ -14616,7 +14644,7 @@ var getTranslateValue = (progress, max) => {
14616
14644
  const progressPercentage = progress / max * 100;
14617
14645
  return `translateX(-${100 - progressPercentage}%)`;
14618
14646
  };
14619
- var ProgressBarLabel = import_styled_components91.default.div`
14647
+ var ProgressBarLabel = import_styled_components92.default.div`
14620
14648
  display: flex;
14621
14649
  line-height: var(--wui-typography-label-3-line-height);
14622
14650
  font-size: var(--wui-typography-label-3-size);
@@ -14624,7 +14652,7 @@ var ProgressBarLabel = import_styled_components91.default.div`
14624
14652
  color: var(--wui-color-text-secondary);
14625
14653
  flex-shrink: 0;
14626
14654
  `;
14627
- var StyledProgressIndicator = (0, import_styled_components91.default)(import_react_progress.Indicator)`
14655
+ var StyledProgressIndicator = (0, import_styled_components92.default)(import_react_progress.Indicator)`
14628
14656
  background-color: var(--progress-bar-indicator-color);
14629
14657
  width: 100%;
14630
14658
  height: 100%;
@@ -14633,7 +14661,7 @@ var StyledProgressIndicator = (0, import_styled_components91.default)(import_rea
14633
14661
  transition: transform 660ms cubic-bezier(0.65, 0, 0.35, 1);
14634
14662
  transform: ${({ $progress, $max }) => getTranslateValue($progress, $max)};
14635
14663
  `;
14636
- var StyledProgressBar = (0, import_styled_components91.default)(import_react_progress.Root)`
14664
+ var StyledProgressBar = (0, import_styled_components92.default)(import_react_progress.Root)`
14637
14665
  position: relative;
14638
14666
  overflow: hidden;
14639
14667
  background: var(--progress-bar-background-color);
@@ -14652,15 +14680,15 @@ var ProgressBar = ({
14652
14680
  labelRight,
14653
14681
  ...props
14654
14682
  }) => {
14655
- return /* @__PURE__ */ (0, import_jsx_runtime283.jsxs)(ProgressBarWrapper, { children: [
14656
- (0, import_type_guards52.isNotNil)(labelLeft) ? /* @__PURE__ */ (0, import_jsx_runtime283.jsx)(ProgressBarLabel, { children: labelLeft }) : null,
14657
- /* @__PURE__ */ (0, import_jsx_runtime283.jsx)(
14683
+ return /* @__PURE__ */ (0, import_jsx_runtime284.jsxs)(ProgressBarWrapper, { children: [
14684
+ (0, import_type_guards52.isNotNil)(labelLeft) ? /* @__PURE__ */ (0, import_jsx_runtime284.jsx)(ProgressBarLabel, { children: labelLeft }) : null,
14685
+ /* @__PURE__ */ (0, import_jsx_runtime284.jsx)(
14658
14686
  StyledProgressBar,
14659
14687
  {
14660
14688
  max,
14661
14689
  value: progress,
14662
14690
  ...props,
14663
- children: /* @__PURE__ */ (0, import_jsx_runtime283.jsx)(
14691
+ children: /* @__PURE__ */ (0, import_jsx_runtime284.jsx)(
14664
14692
  StyledProgressIndicator,
14665
14693
  {
14666
14694
  $max: max,
@@ -14669,17 +14697,17 @@ var ProgressBar = ({
14669
14697
  )
14670
14698
  }
14671
14699
  ),
14672
- (0, import_type_guards52.isNotNil)(labelRight) ? /* @__PURE__ */ (0, import_jsx_runtime283.jsx)(ProgressBarLabel, { children: labelRight }) : null
14700
+ (0, import_type_guards52.isNotNil)(labelRight) ? /* @__PURE__ */ (0, import_jsx_runtime284.jsx)(ProgressBarLabel, { children: labelRight }) : null
14673
14701
  ] });
14674
14702
  };
14675
14703
  ProgressBar.displayName = "ProgressBar_UI";
14676
14704
 
14677
14705
  // src/components/Radio/Radio.tsx
14678
14706
  var import_react72 = require("react");
14679
- var import_styled_components92 = __toESM(require("styled-components"));
14707
+ var import_styled_components93 = __toESM(require("styled-components"));
14680
14708
  var import_type_guards53 = require("@wistia/type-guards");
14681
- var import_jsx_runtime284 = require("react/jsx-runtime");
14682
- var RadioIcon = () => /* @__PURE__ */ (0, import_jsx_runtime284.jsx)(
14709
+ var import_jsx_runtime285 = require("react/jsx-runtime");
14710
+ var RadioIcon = () => /* @__PURE__ */ (0, import_jsx_runtime285.jsx)(
14683
14711
  "svg",
14684
14712
  {
14685
14713
  fill: "inherit",
@@ -14687,7 +14715,7 @@ var RadioIcon = () => /* @__PURE__ */ (0, import_jsx_runtime284.jsx)(
14687
14715
  viewBox: "0 0 1 1",
14688
14716
  width: "1",
14689
14717
  xmlns: "http://www.w3.org/2000/svg",
14690
- children: /* @__PURE__ */ (0, import_jsx_runtime284.jsx)(
14718
+ children: /* @__PURE__ */ (0, import_jsx_runtime285.jsx)(
14691
14719
  "circle",
14692
14720
  {
14693
14721
  cx: "0.5",
@@ -14698,7 +14726,7 @@ var RadioIcon = () => /* @__PURE__ */ (0, import_jsx_runtime284.jsx)(
14698
14726
  )
14699
14727
  }
14700
14728
  );
14701
- var sizeSmall3 = import_styled_components92.css`
14729
+ var sizeSmall3 = import_styled_components93.css`
14702
14730
  width: 14px;
14703
14731
  height: 14px;
14704
14732
  min-width: 14px;
@@ -14709,7 +14737,7 @@ var sizeSmall3 = import_styled_components92.css`
14709
14737
  height: 7px;
14710
14738
  }
14711
14739
  `;
14712
- var sizeMedium3 = import_styled_components92.css`
14740
+ var sizeMedium3 = import_styled_components93.css`
14713
14741
  width: 16px;
14714
14742
  height: 16px;
14715
14743
  min-width: 16px;
@@ -14720,7 +14748,7 @@ var sizeMedium3 = import_styled_components92.css`
14720
14748
  height: 8px;
14721
14749
  }
14722
14750
  `;
14723
- var sizeLarge3 = import_styled_components92.css`
14751
+ var sizeLarge3 = import_styled_components93.css`
14724
14752
  width: 20px;
14725
14753
  height: 20px;
14726
14754
  min-width: 20px;
@@ -14736,14 +14764,14 @@ var getSizeCss3 = (size) => {
14736
14764
  if (size === "lg") return sizeLarge3;
14737
14765
  return sizeMedium3;
14738
14766
  };
14739
- var StyledRadioWrapper = import_styled_components92.default.div`
14767
+ var StyledRadioWrapper = import_styled_components93.default.div`
14740
14768
  display: flex;
14741
14769
  margin: 0;
14742
14770
 
14743
14771
  /* TODO this solves a problem but potentially causes and a11y issue */
14744
14772
  user-select: none;
14745
14773
  `;
14746
- var StyledRadioInput = import_styled_components92.default.div`
14774
+ var StyledRadioInput = import_styled_components93.default.div`
14747
14775
  ${({ $size }) => getSizeCss3($size)}
14748
14776
  line-height: 0;
14749
14777
  margin: 0;
@@ -14765,7 +14793,7 @@ var StyledRadioInput = import_styled_components92.default.div`
14765
14793
  }
14766
14794
  }
14767
14795
  `;
14768
- var StyledHiddenRadioInput = import_styled_components92.default.input`
14796
+ var StyledHiddenRadioInput = import_styled_components93.default.input`
14769
14797
  ${visuallyHiddenStyle}
14770
14798
 
14771
14799
  /* toggles display of faux-input border-color */
@@ -14802,13 +14830,13 @@ var Radio = (0, import_react72.forwardRef)(
14802
14830
  const radioName = name ?? contextName;
14803
14831
  const handleOnChange = onChange ?? contextOnChange;
14804
14832
  const defaultChecked = (0, import_type_guards53.isNotUndefined)(value) && (0, import_type_guards53.isNotUndefined)(contextValue) ? contextValue.includes(value) : void 0;
14805
- return /* @__PURE__ */ (0, import_jsx_runtime284.jsxs)(
14833
+ return /* @__PURE__ */ (0, import_jsx_runtime285.jsxs)(
14806
14834
  StyledRadioWrapper,
14807
14835
  {
14808
14836
  $disabled: disabled,
14809
14837
  "aria-invalid": props["aria-invalid"],
14810
14838
  children: [
14811
- /* @__PURE__ */ (0, import_jsx_runtime284.jsx)(
14839
+ /* @__PURE__ */ (0, import_jsx_runtime285.jsx)(
14812
14840
  StyledHiddenRadioInput,
14813
14841
  {
14814
14842
  ...props,
@@ -14823,16 +14851,16 @@ var Radio = (0, import_react72.forwardRef)(
14823
14851
  ...(0, import_type_guards53.isNotUndefined)(defaultChecked) ? { defaultChecked } : { checked }
14824
14852
  }
14825
14853
  ),
14826
- /* @__PURE__ */ (0, import_jsx_runtime284.jsx)(
14854
+ /* @__PURE__ */ (0, import_jsx_runtime285.jsx)(
14827
14855
  FormControlLabel,
14828
14856
  {
14829
- controlSlot: /* @__PURE__ */ (0, import_jsx_runtime284.jsx)(
14857
+ controlSlot: /* @__PURE__ */ (0, import_jsx_runtime285.jsx)(
14830
14858
  StyledRadioInput,
14831
14859
  {
14832
14860
  $disabled: disabled,
14833
14861
  $size: size,
14834
14862
  "data-wui-faux-input": "true",
14835
- children: /* @__PURE__ */ (0, import_jsx_runtime284.jsx)(RadioIcon, {})
14863
+ children: /* @__PURE__ */ (0, import_jsx_runtime285.jsx)(RadioIcon, {})
14836
14864
  }
14837
14865
  ),
14838
14866
  description,
@@ -14854,17 +14882,17 @@ var import_react74 = require("react");
14854
14882
 
14855
14883
  // src/components/RadioCard/RadioCardRoot.tsx
14856
14884
  var import_react73 = require("react");
14857
- var import_styled_components93 = __toESM(require("styled-components"));
14885
+ var import_styled_components94 = __toESM(require("styled-components"));
14858
14886
  var import_type_guards54 = require("@wistia/type-guards");
14859
- var import_jsx_runtime285 = require("react/jsx-runtime");
14860
- var checkedStyles = import_styled_components93.css`
14887
+ var import_jsx_runtime286 = require("react/jsx-runtime");
14888
+ var checkedStyles = import_styled_components94.css`
14861
14889
  --wui-radio-card-border-color: var(--wui-color-focus-ring);
14862
14890
  --wui-color-icon: var(--wui-color-icon-selected);
14863
14891
  --wui-radio-card-background-color: var(--wui-color-bg-surface-info);
14864
14892
  --wui-color-text: var(--wui-color-text-info);
14865
14893
  --wui-color-text-secondary: var(--wui-color-text-info);
14866
14894
  `;
14867
- var disabledStyles = import_styled_components93.css`
14895
+ var disabledStyles = import_styled_components94.css`
14868
14896
  --wui-radio-card-border-color: var(--wui-color-border-disabled);
14869
14897
  --wui-radio-card-background-color: var(--wui-color-bg-surface-disabled);
14870
14898
  --wui-radio-card-cursor: not-allowed;
@@ -14872,10 +14900,10 @@ var disabledStyles = import_styled_components93.css`
14872
14900
  --wui-color-text: var(--wui-color-text-disabled);
14873
14901
  --wui-color-text-secondary: var(--wui-color-text-disabled);
14874
14902
  `;
14875
- var focusStyles = import_styled_components93.css`
14903
+ var focusStyles = import_styled_components94.css`
14876
14904
  outline: 2px solid var(--wui-color-focus-ring);
14877
14905
  `;
14878
- var imageCoverStyles = import_styled_components93.css`
14906
+ var imageCoverStyles = import_styled_components94.css`
14879
14907
  --wui-radio-card-image-inset: 0px;
14880
14908
  --wui-radio-card-border-width: 0px;
14881
14909
  --wui-inset-shadow-width: 1px;
@@ -14906,7 +14934,7 @@ var imageCoverStyles = import_styled_components93.css`
14906
14934
  transition: all var(--wui-motion-duration-02) var(--wui-motion-ease);
14907
14935
  }
14908
14936
  `;
14909
- var StyledCard2 = import_styled_components93.default.label`
14937
+ var StyledCard2 = import_styled_components94.default.label`
14910
14938
  --wui-radio-card-border-color: var(--wui-color-border-secondary);
14911
14939
  --wui-radio-card-background-color: var(--wui-color-bg-surface);
14912
14940
  --wui-radio-card-cursor: pointer;
@@ -14959,7 +14987,7 @@ var StyledCard2 = import_styled_components93.default.label`
14959
14987
  }
14960
14988
  }
14961
14989
  `;
14962
- var StyledHiddenInput = import_styled_components93.default.input`
14990
+ var StyledHiddenInput = import_styled_components94.default.input`
14963
14991
  ${visuallyHiddenStyle}
14964
14992
  `;
14965
14993
  var RadioCardRoot = (0, import_react73.forwardRef)(
@@ -14984,14 +15012,14 @@ var RadioCardRoot = (0, import_react73.forwardRef)(
14984
15012
  const radioName = name ?? contextName;
14985
15013
  const handleOnChange = onChange ?? contextOnChange;
14986
15014
  const defaultChecked = (0, import_type_guards54.isNotUndefined)(value) && (0, import_type_guards54.isNotUndefined)(contextValue) ? contextValue.includes(value) : void 0;
14987
- return /* @__PURE__ */ (0, import_jsx_runtime285.jsxs)(
15015
+ return /* @__PURE__ */ (0, import_jsx_runtime286.jsxs)(
14988
15016
  StyledCard2,
14989
15017
  {
14990
15018
  $aspectRatio: aspectRatio,
14991
15019
  $padding: padding,
14992
15020
  htmlFor: computedId,
14993
15021
  children: [
14994
- /* @__PURE__ */ (0, import_jsx_runtime285.jsx)(
15022
+ /* @__PURE__ */ (0, import_jsx_runtime286.jsx)(
14995
15023
  StyledHiddenInput,
14996
15024
  {
14997
15025
  ...props,
@@ -15014,12 +15042,12 @@ var RadioCardRoot = (0, import_react73.forwardRef)(
15014
15042
  RadioCardRoot.displayName = "RadioCardRoot_UI";
15015
15043
 
15016
15044
  // src/components/RadioCard/RadioCardDefaultLayout.tsx
15017
- var import_styled_components95 = __toESM(require("styled-components"));
15045
+ var import_styled_components96 = __toESM(require("styled-components"));
15018
15046
  var import_type_guards55 = require("@wistia/type-guards");
15019
15047
 
15020
15048
  // src/components/RadioCard/RadioCardIndicator.tsx
15021
- var import_styled_components94 = __toESM(require("styled-components"));
15022
- var RadioCardIndicator = import_styled_components94.default.div`
15049
+ var import_styled_components95 = __toESM(require("styled-components"));
15050
+ var RadioCardIndicator = import_styled_components95.default.div`
15023
15051
  --wui-radio-card-indicator-size: 14px;
15024
15052
  --wui-radio-card-indicator-background-color: var(--wui-color-bg-surface);
15025
15053
  --wui-radio-card-indicator-fill-color: var(--wui-color-bg-fill);
@@ -15068,16 +15096,16 @@ var RadioCardIndicator = import_styled_components94.default.div`
15068
15096
  RadioCardIndicator.displayName = "RadioCardIndicator_UI";
15069
15097
 
15070
15098
  // src/components/RadioCard/RadioCardDefaultLayout.tsx
15071
- var import_jsx_runtime286 = require("react/jsx-runtime");
15072
- var StyledCardContent = import_styled_components95.default.div`
15099
+ var import_jsx_runtime287 = require("react/jsx-runtime");
15100
+ var StyledCardContent = import_styled_components96.default.div`
15073
15101
  display: grid;
15074
15102
  grid-auto-flow: column;
15075
15103
  gap: var(--wui-space-02);
15076
15104
  `;
15077
- var StyledCardIcon = import_styled_components95.default.div`
15105
+ var StyledCardIcon = import_styled_components96.default.div`
15078
15106
  display: contents;
15079
15107
  `;
15080
- var StyledIndicatorContainer = import_styled_components95.default.div`
15108
+ var StyledIndicatorContainer = import_styled_components96.default.div`
15081
15109
  height: ${({ $hasIcon }) => $hasIcon ? "24px" : "16px"};
15082
15110
  display: flex;
15083
15111
  align-items: center;
@@ -15088,18 +15116,18 @@ var RadioCardDefaultLayout = ({
15088
15116
  description,
15089
15117
  showIndicator = true
15090
15118
  }) => {
15091
- return /* @__PURE__ */ (0, import_jsx_runtime286.jsxs)(StyledCardContent, { children: [
15092
- showIndicator ? /* @__PURE__ */ (0, import_jsx_runtime286.jsx)(StyledIndicatorContainer, { $hasIcon: (0, import_type_guards55.isNotNil)(icon), children: /* @__PURE__ */ (0, import_jsx_runtime286.jsx)(RadioCardIndicator, { "data-testid": "wui-radio-card-indicator" }) }) : null,
15093
- /* @__PURE__ */ (0, import_jsx_runtime286.jsxs)(Stack, { gap: "space-02", children: [
15094
- (0, import_type_guards55.isNotNil)(icon) && /* @__PURE__ */ (0, import_jsx_runtime286.jsx)(StyledCardIcon, { "data-wui-radio-card-icon": true, children: icon }),
15095
- /* @__PURE__ */ (0, import_jsx_runtime286.jsxs)(
15119
+ return /* @__PURE__ */ (0, import_jsx_runtime287.jsxs)(StyledCardContent, { children: [
15120
+ showIndicator ? /* @__PURE__ */ (0, import_jsx_runtime287.jsx)(StyledIndicatorContainer, { $hasIcon: (0, import_type_guards55.isNotNil)(icon), children: /* @__PURE__ */ (0, import_jsx_runtime287.jsx)(RadioCardIndicator, { "data-testid": "wui-radio-card-indicator" }) }) : null,
15121
+ /* @__PURE__ */ (0, import_jsx_runtime287.jsxs)(Stack, { gap: "space-02", children: [
15122
+ (0, import_type_guards55.isNotNil)(icon) && /* @__PURE__ */ (0, import_jsx_runtime287.jsx)(StyledCardIcon, { "data-wui-radio-card-icon": true, children: icon }),
15123
+ /* @__PURE__ */ (0, import_jsx_runtime287.jsxs)(
15096
15124
  Stack,
15097
15125
  {
15098
15126
  gap: "space-01",
15099
15127
  style: (0, import_type_guards55.isNotNil)(icon) ? { paddingLeft: 2 } : void 0,
15100
15128
  children: [
15101
- /* @__PURE__ */ (0, import_jsx_runtime286.jsx)(Text, { variant: "label3", children: /* @__PURE__ */ (0, import_jsx_runtime286.jsx)("strong", { children: label }) }),
15102
- (0, import_type_guards55.isNotNil)(description) && /* @__PURE__ */ (0, import_jsx_runtime286.jsx)(
15129
+ /* @__PURE__ */ (0, import_jsx_runtime287.jsx)(Text, { variant: "label3", children: /* @__PURE__ */ (0, import_jsx_runtime287.jsx)("strong", { children: label }) }),
15130
+ (0, import_type_guards55.isNotNil)(description) && /* @__PURE__ */ (0, import_jsx_runtime287.jsx)(
15103
15131
  Text,
15104
15132
  {
15105
15133
  prominence: "secondary",
@@ -15116,15 +15144,15 @@ var RadioCardDefaultLayout = ({
15116
15144
  RadioCardDefaultLayout.displayName = "RadioCardDefaultLayout_UI";
15117
15145
 
15118
15146
  // src/components/RadioCard/RadioCard.tsx
15119
- var import_jsx_runtime287 = require("react/jsx-runtime");
15147
+ var import_jsx_runtime288 = require("react/jsx-runtime");
15120
15148
  var RadioCard = (0, import_react74.forwardRef)(
15121
15149
  ({ icon, label, description, showIndicator, ...rootProps }, ref) => {
15122
- return /* @__PURE__ */ (0, import_jsx_runtime287.jsx)(
15150
+ return /* @__PURE__ */ (0, import_jsx_runtime288.jsx)(
15123
15151
  RadioCardRoot,
15124
15152
  {
15125
15153
  ref,
15126
15154
  ...rootProps,
15127
- children: /* @__PURE__ */ (0, import_jsx_runtime287.jsx)(
15155
+ children: /* @__PURE__ */ (0, import_jsx_runtime288.jsx)(
15128
15156
  RadioCardDefaultLayout,
15129
15157
  {
15130
15158
  description,
@@ -15141,17 +15169,17 @@ RadioCard.displayName = "RadioCard_UI";
15141
15169
 
15142
15170
  // src/components/RadioCard/RadioCardImage.tsx
15143
15171
  var import_react75 = require("react");
15144
- var import_jsx_runtime288 = require("react/jsx-runtime");
15172
+ var import_jsx_runtime289 = require("react/jsx-runtime");
15145
15173
  var RadioCardImage = (0, import_react75.forwardRef)(
15146
15174
  ({ label, imageSrc, aspectRatio, padding = "space-04", ...rootProps }, ref) => {
15147
- return /* @__PURE__ */ (0, import_jsx_runtime288.jsx)(
15175
+ return /* @__PURE__ */ (0, import_jsx_runtime289.jsx)(
15148
15176
  RadioCardRoot,
15149
15177
  {
15150
15178
  ref,
15151
15179
  ...rootProps,
15152
15180
  aspectRatio,
15153
15181
  padding,
15154
- children: /* @__PURE__ */ (0, import_jsx_runtime288.jsx)(
15182
+ children: /* @__PURE__ */ (0, import_jsx_runtime289.jsx)(
15155
15183
  Image,
15156
15184
  {
15157
15185
  alt: label,
@@ -15169,13 +15197,13 @@ RadioCardImage.displayName = "RadioCardImage_UI";
15169
15197
 
15170
15198
  // src/components/SegmentedControl/SegmentedControl.tsx
15171
15199
  var import_react78 = require("react");
15172
- var import_styled_components97 = __toESM(require("styled-components"));
15200
+ var import_styled_components98 = __toESM(require("styled-components"));
15173
15201
  var import_react_toggle_group3 = require("@radix-ui/react-toggle-group");
15174
15202
  var import_type_guards57 = require("@wistia/type-guards");
15175
15203
 
15176
15204
  // src/components/SegmentedControl/useSelectedItemStyle.tsx
15177
15205
  var import_react76 = require("react");
15178
- var import_jsx_runtime289 = require("react/jsx-runtime");
15206
+ var import_jsx_runtime290 = require("react/jsx-runtime");
15179
15207
  var SelectedItemStyleContext = (0, import_react76.createContext)(null);
15180
15208
  var SelectedItemStyleProvider = ({
15181
15209
  children
@@ -15196,7 +15224,7 @@ var SelectedItemStyleProvider = ({
15196
15224
  }),
15197
15225
  [selectedItemIndicatorStyle]
15198
15226
  );
15199
- return /* @__PURE__ */ (0, import_jsx_runtime289.jsx)(SelectedItemStyleContext.Provider, { value: contextValue, children });
15227
+ return /* @__PURE__ */ (0, import_jsx_runtime290.jsx)(SelectedItemStyleContext.Provider, { value: contextValue, children });
15200
15228
  };
15201
15229
  var useSelectedItemStyle = () => {
15202
15230
  const context = (0, import_react76.useContext)(SelectedItemStyleContext);
@@ -15207,7 +15235,7 @@ var useSelectedItemStyle = () => {
15207
15235
  };
15208
15236
 
15209
15237
  // src/components/SegmentedControl/SelectedItemIndicator.tsx
15210
- var import_styled_components96 = __toESM(require("styled-components"));
15238
+ var import_styled_components97 = __toESM(require("styled-components"));
15211
15239
  var import_type_guards56 = require("@wistia/type-guards");
15212
15240
 
15213
15241
  // src/components/SegmentedControl/useSegmentedControlValue.tsx
@@ -15223,13 +15251,13 @@ var useSegmentedControlValue = () => {
15223
15251
  };
15224
15252
 
15225
15253
  // src/components/SegmentedControl/SelectedItemIndicator.tsx
15226
- var import_jsx_runtime290 = require("react/jsx-runtime");
15227
- var selectedItemIndicatorStyles = import_styled_components96.css`
15254
+ var import_jsx_runtime291 = require("react/jsx-runtime");
15255
+ var selectedItemIndicatorStyles = import_styled_components97.css`
15228
15256
  background-color: var(--wui-color-bg-fill-white);
15229
15257
  border-radius: var(--wui-border-radius-rounded);
15230
15258
  box-shadow: var(--wui-elevation-01);
15231
15259
  `;
15232
- var SelectedItemIndicatorDiv = import_styled_components96.default.div`
15260
+ var SelectedItemIndicatorDiv = import_styled_components97.default.div`
15233
15261
  ${selectedItemIndicatorStyles}
15234
15262
  left: 0;
15235
15263
  position: absolute;
@@ -15245,7 +15273,7 @@ var SelectedItemIndicator = () => {
15245
15273
  if (!selectedValue || (0, import_type_guards56.isUndefined)(selectedItemIndicatorStyle)) {
15246
15274
  return null;
15247
15275
  }
15248
- return /* @__PURE__ */ (0, import_jsx_runtime290.jsx)(
15276
+ return /* @__PURE__ */ (0, import_jsx_runtime291.jsx)(
15249
15277
  SelectedItemIndicatorDiv,
15250
15278
  {
15251
15279
  "data-wui-selected-item-indicator": true,
@@ -15255,8 +15283,8 @@ var SelectedItemIndicator = () => {
15255
15283
  };
15256
15284
 
15257
15285
  // src/components/SegmentedControl/SegmentedControl.tsx
15258
- var import_jsx_runtime291 = require("react/jsx-runtime");
15259
- var segmentedControlStyles = import_styled_components97.css`
15286
+ var import_jsx_runtime292 = require("react/jsx-runtime");
15287
+ var segmentedControlStyles = import_styled_components98.css`
15260
15288
  display: inline-flex;
15261
15289
  background-color: var(--wui-color-bg-surface-secondary);
15262
15290
  border-radius: var(--wui-border-radius-rounded);
@@ -15267,7 +15295,7 @@ var segmentedControlStyles = import_styled_components97.css`
15267
15295
  position: relative;
15268
15296
  width: ${({ $fullWidth }) => $fullWidth ? "100%" : "auto"};
15269
15297
  `;
15270
- var StyledSegmentedControl = (0, import_styled_components97.default)(import_react_toggle_group3.Root)`
15298
+ var StyledSegmentedControl = (0, import_styled_components98.default)(import_react_toggle_group3.Root)`
15271
15299
  ${segmentedControlStyles}
15272
15300
  `;
15273
15301
  var SegmentedControl = (0, import_react78.forwardRef)(
@@ -15282,7 +15310,7 @@ var SegmentedControl = (0, import_react78.forwardRef)(
15282
15310
  if ((0, import_type_guards57.isNil)(children)) {
15283
15311
  return null;
15284
15312
  }
15285
- return /* @__PURE__ */ (0, import_jsx_runtime291.jsx)(
15313
+ return /* @__PURE__ */ (0, import_jsx_runtime292.jsx)(
15286
15314
  StyledSegmentedControl,
15287
15315
  {
15288
15316
  ref,
@@ -15294,9 +15322,9 @@ var SegmentedControl = (0, import_react78.forwardRef)(
15294
15322
  type: "single",
15295
15323
  value: selectedValue,
15296
15324
  ...props,
15297
- children: /* @__PURE__ */ (0, import_jsx_runtime291.jsx)(SegmentedControlValueProvider, { value: selectedValue, children: /* @__PURE__ */ (0, import_jsx_runtime291.jsxs)(SelectedItemStyleProvider, { children: [
15325
+ children: /* @__PURE__ */ (0, import_jsx_runtime292.jsx)(SegmentedControlValueProvider, { value: selectedValue, children: /* @__PURE__ */ (0, import_jsx_runtime292.jsxs)(SelectedItemStyleProvider, { children: [
15298
15326
  children,
15299
- /* @__PURE__ */ (0, import_jsx_runtime291.jsx)(SelectedItemIndicator, {})
15327
+ /* @__PURE__ */ (0, import_jsx_runtime292.jsx)(SelectedItemIndicator, {})
15300
15328
  ] }) })
15301
15329
  }
15302
15330
  );
@@ -15306,11 +15334,11 @@ SegmentedControl.displayName = "SegmentedControl_UI";
15306
15334
 
15307
15335
  // src/components/SegmentedControl/SegmentedControlItem.tsx
15308
15336
  var import_react79 = require("react");
15309
- var import_styled_components98 = __toESM(require("styled-components"));
15337
+ var import_styled_components99 = __toESM(require("styled-components"));
15310
15338
  var import_react_toggle_group4 = require("@radix-ui/react-toggle-group");
15311
15339
  var import_type_guards58 = require("@wistia/type-guards");
15312
- var import_jsx_runtime292 = require("react/jsx-runtime");
15313
- var segmentedControlItemStyles = import_styled_components98.css`
15340
+ var import_jsx_runtime293 = require("react/jsx-runtime");
15341
+ var segmentedControlItemStyles = import_styled_components99.css`
15314
15342
  all: unset; /* ToggleGroupItem is a button element */
15315
15343
  align-items: center;
15316
15344
  border-radius: var(--wui-border-radius-rounded);
@@ -15377,7 +15405,7 @@ var segmentedControlItemStyles = import_styled_components98.css`
15377
15405
  }
15378
15406
  }
15379
15407
  `;
15380
- var StyledSegmentedControlItem = (0, import_styled_components98.default)(import_react_toggle_group4.Item)`
15408
+ var StyledSegmentedControlItem = (0, import_styled_components99.default)(import_react_toggle_group4.Item)`
15381
15409
  ${segmentedControlItemStyles}
15382
15410
  `;
15383
15411
  var SegmentedControlItem = (0, import_react79.forwardRef)(
@@ -15418,7 +15446,7 @@ var SegmentedControlItem = (0, import_react79.forwardRef)(
15418
15446
  resizeObserver.disconnect();
15419
15447
  };
15420
15448
  }, [selectedValue, setSelectedItemMeasurements, value]);
15421
- return /* @__PURE__ */ (0, import_jsx_runtime292.jsxs)(
15449
+ return /* @__PURE__ */ (0, import_jsx_runtime293.jsxs)(
15422
15450
  StyledSegmentedControlItem,
15423
15451
  {
15424
15452
  ref: combinedRef,
@@ -15441,9 +15469,9 @@ SegmentedControlItem.displayName = "SegmentedControlItem_UI";
15441
15469
  // src/components/Select/Select.tsx
15442
15470
  var import_react_select = require("@radix-ui/react-select");
15443
15471
  var import_react80 = require("react");
15444
- var import_styled_components99 = __toESM(require("styled-components"));
15445
- var import_jsx_runtime293 = require("react/jsx-runtime");
15446
- var StyledTrigger2 = (0, import_styled_components99.default)(import_react_select.Trigger)`
15472
+ var import_styled_components100 = __toESM(require("styled-components"));
15473
+ var import_jsx_runtime294 = require("react/jsx-runtime");
15474
+ var StyledTrigger2 = (0, import_styled_components100.default)(import_react_select.Trigger)`
15447
15475
  ${({ $colorScheme }) => getColorScheme($colorScheme)};
15448
15476
  ${inputCss};
15449
15477
  padding: var(--wui-input-vertical-padding) var(--wui-input-horizontal-padding);
@@ -15487,7 +15515,7 @@ var StyledTrigger2 = (0, import_styled_components99.default)(import_react_select
15487
15515
  color: var(--wui-input-placeholder);
15488
15516
  }
15489
15517
  `;
15490
- var StyledContent3 = (0, import_styled_components99.default)(import_react_select.Content)`
15518
+ var StyledContent3 = (0, import_styled_components100.default)(import_react_select.Content)`
15491
15519
  --wui-select-content-border: var(--wui-color-border);
15492
15520
  --wui-select-content-bg: var(--wui-color-bg-surface);
15493
15521
  --wui-select-content-border-radius: var(--wui-border-radius-02);
@@ -15515,13 +15543,13 @@ var Select = (0, import_react80.forwardRef)(
15515
15543
  ...props
15516
15544
  }, forwardedRef) => {
15517
15545
  const responsiveFullWidth = useResponsiveProp(fullWidth);
15518
- return /* @__PURE__ */ (0, import_jsx_runtime293.jsxs)(
15546
+ return /* @__PURE__ */ (0, import_jsx_runtime294.jsxs)(
15519
15547
  import_react_select.Root,
15520
15548
  {
15521
15549
  ...props,
15522
15550
  onValueChange: onChange,
15523
15551
  children: [
15524
- /* @__PURE__ */ (0, import_jsx_runtime293.jsxs)(
15552
+ /* @__PURE__ */ (0, import_jsx_runtime294.jsxs)(
15525
15553
  StyledTrigger2,
15526
15554
  {
15527
15555
  ref: forwardedRef,
@@ -15529,8 +15557,8 @@ var Select = (0, import_react80.forwardRef)(
15529
15557
  $fullWidth: responsiveFullWidth,
15530
15558
  ...props,
15531
15559
  children: [
15532
- /* @__PURE__ */ (0, import_jsx_runtime293.jsx)(import_react_select.Value, { placeholder }),
15533
- /* @__PURE__ */ (0, import_jsx_runtime293.jsx)(
15560
+ /* @__PURE__ */ (0, import_jsx_runtime294.jsx)(import_react_select.Value, { placeholder }),
15561
+ /* @__PURE__ */ (0, import_jsx_runtime294.jsx)(
15534
15562
  Icon,
15535
15563
  {
15536
15564
  size: "md",
@@ -15540,10 +15568,10 @@ var Select = (0, import_react80.forwardRef)(
15540
15568
  ]
15541
15569
  }
15542
15570
  ),
15543
- /* @__PURE__ */ (0, import_jsx_runtime293.jsx)(import_react_select.Portal, { children: /* @__PURE__ */ (0, import_jsx_runtime293.jsxs)(StyledContent3, { position: "popper", children: [
15544
- /* @__PURE__ */ (0, import_jsx_runtime293.jsx)(import_react_select.ScrollUpButton, { children: /* @__PURE__ */ (0, import_jsx_runtime293.jsx)(Icon, { type: "caret-up" }) }),
15545
- /* @__PURE__ */ (0, import_jsx_runtime293.jsx)(import_react_select.Viewport, { children }),
15546
- /* @__PURE__ */ (0, import_jsx_runtime293.jsx)(import_react_select.ScrollDownButton, { children: /* @__PURE__ */ (0, import_jsx_runtime293.jsx)(Icon, { type: "caret-down" }) })
15571
+ /* @__PURE__ */ (0, import_jsx_runtime294.jsx)(import_react_select.Portal, { children: /* @__PURE__ */ (0, import_jsx_runtime294.jsxs)(StyledContent3, { position: "popper", children: [
15572
+ /* @__PURE__ */ (0, import_jsx_runtime294.jsx)(import_react_select.ScrollUpButton, { children: /* @__PURE__ */ (0, import_jsx_runtime294.jsx)(Icon, { type: "caret-up" }) }),
15573
+ /* @__PURE__ */ (0, import_jsx_runtime294.jsx)(import_react_select.Viewport, { children }),
15574
+ /* @__PURE__ */ (0, import_jsx_runtime294.jsx)(import_react_select.ScrollDownButton, { children: /* @__PURE__ */ (0, import_jsx_runtime294.jsx)(Icon, { type: "caret-down" }) })
15547
15575
  ] }) })
15548
15576
  ]
15549
15577
  }
@@ -15555,10 +15583,10 @@ Select.displayName = "Select_UI";
15555
15583
  // src/components/Select/SelectOption.tsx
15556
15584
  var import_react_select2 = require("@radix-ui/react-select");
15557
15585
  var import_react81 = require("react");
15558
- var import_styled_components100 = __toESM(require("styled-components"));
15586
+ var import_styled_components101 = __toESM(require("styled-components"));
15559
15587
  var import_type_guards59 = require("@wistia/type-guards");
15560
- var import_jsx_runtime294 = require("react/jsx-runtime");
15561
- var StyledItem = (0, import_styled_components100.default)(import_react_select2.Item)`
15588
+ var import_jsx_runtime295 = require("react/jsx-runtime");
15589
+ var StyledItem = (0, import_styled_components101.default)(import_react_select2.Item)`
15562
15590
  ${variantStyleMap2.body3};
15563
15591
  display: flex;
15564
15592
  padding: var(--wui-select-option-padding);
@@ -15582,28 +15610,28 @@ var StyledItem = (0, import_styled_components100.default)(import_react_select2.I
15582
15610
  background-color: transparent;
15583
15611
  }
15584
15612
  `;
15585
- var StyledIconContainer = import_styled_components100.default.span`
15613
+ var StyledIconContainer2 = import_styled_components101.default.span`
15586
15614
  width: 12px;
15587
15615
  `;
15588
15616
  var SelectOption = (0, import_react81.forwardRef)(
15589
15617
  ({ children, selectedDisplayValue, ...props }, forwardedRef) => {
15590
- return /* @__PURE__ */ (0, import_jsx_runtime294.jsxs)(
15618
+ return /* @__PURE__ */ (0, import_jsx_runtime295.jsxs)(
15591
15619
  StyledItem,
15592
15620
  {
15593
15621
  ...props,
15594
15622
  ref: forwardedRef,
15595
15623
  children: [
15596
- /* @__PURE__ */ (0, import_jsx_runtime294.jsx)(StyledIconContainer, { "data-indicator": true, children: /* @__PURE__ */ (0, import_jsx_runtime294.jsx)(import_react_select2.ItemIndicator, { children: /* @__PURE__ */ (0, import_jsx_runtime294.jsx)(
15624
+ /* @__PURE__ */ (0, import_jsx_runtime295.jsx)(StyledIconContainer2, { "data-indicator": true, children: /* @__PURE__ */ (0, import_jsx_runtime295.jsx)(import_react_select2.ItemIndicator, { children: /* @__PURE__ */ (0, import_jsx_runtime295.jsx)(
15597
15625
  Icon,
15598
15626
  {
15599
15627
  size: "sm",
15600
15628
  type: "checkmark"
15601
15629
  }
15602
15630
  ) }) }),
15603
- (0, import_type_guards59.isNotNil)(selectedDisplayValue) ? /* @__PURE__ */ (0, import_jsx_runtime294.jsxs)("div", { children: [
15631
+ (0, import_type_guards59.isNotNil)(selectedDisplayValue) ? /* @__PURE__ */ (0, import_jsx_runtime295.jsxs)("div", { children: [
15604
15632
  children,
15605
- /* @__PURE__ */ (0, import_jsx_runtime294.jsx)("div", { style: { display: "none" }, children: /* @__PURE__ */ (0, import_jsx_runtime294.jsx)(import_react_select2.ItemText, { children: selectedDisplayValue }) })
15606
- ] }) : /* @__PURE__ */ (0, import_jsx_runtime294.jsx)(import_react_select2.ItemText, { children })
15633
+ /* @__PURE__ */ (0, import_jsx_runtime295.jsx)("div", { style: { display: "none" }, children: /* @__PURE__ */ (0, import_jsx_runtime295.jsx)(import_react_select2.ItemText, { children: selectedDisplayValue }) })
15634
+ ] }) : /* @__PURE__ */ (0, import_jsx_runtime295.jsx)(import_react_select2.ItemText, { children })
15607
15635
  ]
15608
15636
  }
15609
15637
  );
@@ -15613,14 +15641,14 @@ SelectOption.displayName = "SelectOption_UI";
15613
15641
 
15614
15642
  // src/components/Select/SelectOptionGroup.tsx
15615
15643
  var import_react_select3 = require("@radix-ui/react-select");
15616
- var import_styled_components101 = __toESM(require("styled-components"));
15617
- var import_jsx_runtime295 = require("react/jsx-runtime");
15618
- var StyledLabel4 = (0, import_styled_components101.default)(import_react_select3.Label)`
15644
+ var import_styled_components102 = __toESM(require("styled-components"));
15645
+ var import_jsx_runtime296 = require("react/jsx-runtime");
15646
+ var StyledLabel4 = (0, import_styled_components102.default)(import_react_select3.Label)`
15619
15647
  padding: var(--wui-select-option-padding);
15620
15648
  `;
15621
15649
  var SelectOptionGroup = ({ children, label, ...props }) => {
15622
- return /* @__PURE__ */ (0, import_jsx_runtime295.jsxs)(import_react_select3.Group, { ...props, children: [
15623
- /* @__PURE__ */ (0, import_jsx_runtime295.jsx)(StyledLabel4, { children: /* @__PURE__ */ (0, import_jsx_runtime295.jsx)(
15650
+ return /* @__PURE__ */ (0, import_jsx_runtime296.jsxs)(import_react_select3.Group, { ...props, children: [
15651
+ /* @__PURE__ */ (0, import_jsx_runtime296.jsx)(StyledLabel4, { children: /* @__PURE__ */ (0, import_jsx_runtime296.jsx)(
15624
15652
  Text,
15625
15653
  {
15626
15654
  prominence: "secondary",
@@ -15634,10 +15662,10 @@ var SelectOptionGroup = ({ children, label, ...props }) => {
15634
15662
 
15635
15663
  // src/components/Slider/Slider.tsx
15636
15664
  var import_react_slider2 = require("@radix-ui/react-slider");
15637
- var import_styled_components102 = __toESM(require("styled-components"));
15665
+ var import_styled_components103 = __toESM(require("styled-components"));
15638
15666
  var import_type_guards60 = require("@wistia/type-guards");
15639
- var import_jsx_runtime296 = require("react/jsx-runtime");
15640
- var SliderContainer = import_styled_components102.default.div`
15667
+ var import_jsx_runtime297 = require("react/jsx-runtime");
15668
+ var SliderContainer = import_styled_components103.default.div`
15641
15669
  --wui-slider-track-color: var(--wui-gray-6);
15642
15670
  --wui-slider-track-border-radius: var(--wui-border-radius-rounded);
15643
15671
  --wui-slider-range-color: var(--wui-color-bg-fill);
@@ -15653,7 +15681,7 @@ var SliderContainer = import_styled_components102.default.div`
15653
15681
  pointer-events: none;
15654
15682
  }
15655
15683
  `;
15656
- var StyledSliderRoot = (0, import_styled_components102.default)(import_react_slider2.Root)`
15684
+ var StyledSliderRoot = (0, import_styled_components103.default)(import_react_slider2.Root)`
15657
15685
  position: relative;
15658
15686
  display: flex;
15659
15687
  align-items: center;
@@ -15661,20 +15689,20 @@ var StyledSliderRoot = (0, import_styled_components102.default)(import_react_sli
15661
15689
  touch-action: none;
15662
15690
  width: 100%;
15663
15691
  `;
15664
- var StyledSliderTrack = (0, import_styled_components102.default)(import_react_slider2.Track)`
15692
+ var StyledSliderTrack = (0, import_styled_components103.default)(import_react_slider2.Track)`
15665
15693
  background-color: var(--wui-slider-track-color);
15666
15694
  border-radius: var(--wui-slider-track-border-radius);
15667
15695
  flex-grow: 1;
15668
15696
  height: 6px;
15669
15697
  position: relative;
15670
15698
  `;
15671
- var StyledSliderRange = (0, import_styled_components102.default)(import_react_slider2.Range)`
15699
+ var StyledSliderRange = (0, import_styled_components103.default)(import_react_slider2.Range)`
15672
15700
  background-color: var(--wui-slider-range-color);
15673
15701
  border-radius: var(--wui-slider-track-border-radius);
15674
15702
  height: 100%;
15675
15703
  position: absolute;
15676
15704
  `;
15677
- var StyledSliderThumb = (0, import_styled_components102.default)(import_react_slider2.Thumb)`
15705
+ var StyledSliderThumb = (0, import_styled_components103.default)(import_react_slider2.Thumb)`
15678
15706
  background-color: var(--wui-slider-thumb-color);
15679
15707
  border-radius: var(--wui-border-radius-rounded);
15680
15708
  cursor: grab;
@@ -15725,12 +15753,12 @@ var Slider = ({
15725
15753
  onChange(newValue);
15726
15754
  }
15727
15755
  };
15728
- return /* @__PURE__ */ (0, import_jsx_runtime296.jsx)(
15756
+ return /* @__PURE__ */ (0, import_jsx_runtime297.jsx)(
15729
15757
  SliderContainer,
15730
15758
  {
15731
15759
  ...otherProps,
15732
15760
  "data-testid": dataTestId,
15733
- children: /* @__PURE__ */ (0, import_jsx_runtime296.jsxs)(
15761
+ children: /* @__PURE__ */ (0, import_jsx_runtime297.jsxs)(
15734
15762
  StyledSliderRoot,
15735
15763
  {
15736
15764
  "aria-label": ariaLabel,
@@ -15743,8 +15771,8 @@ var Slider = ({
15743
15771
  step,
15744
15772
  ...value ? { value } : {},
15745
15773
  children: [
15746
- /* @__PURE__ */ (0, import_jsx_runtime296.jsx)(StyledSliderTrack, { "data-testid": `${dataTestId}-track`, children: /* @__PURE__ */ (0, import_jsx_runtime296.jsx)(StyledSliderRange, { "data-testid": `${dataTestId}-range` }) }),
15747
- values.map((_, index) => /* @__PURE__ */ (0, import_jsx_runtime296.jsx)(
15774
+ /* @__PURE__ */ (0, import_jsx_runtime297.jsx)(StyledSliderTrack, { "data-testid": `${dataTestId}-track`, children: /* @__PURE__ */ (0, import_jsx_runtime297.jsx)(StyledSliderRange, { "data-testid": `${dataTestId}-range` }) }),
15775
+ values.map((_, index) => /* @__PURE__ */ (0, import_jsx_runtime297.jsx)(
15748
15776
  StyledSliderThumb,
15749
15777
  {
15750
15778
  "data-testid": `${dataTestId}-thumb-${index}`
@@ -15760,25 +15788,25 @@ var Slider = ({
15760
15788
  Slider.displayName = "Slider_UI";
15761
15789
 
15762
15790
  // src/components/Table/Table.tsx
15763
- var import_styled_components103 = __toESM(require("styled-components"));
15764
- var import_jsx_runtime297 = require("react/jsx-runtime");
15765
- var StyledTable = import_styled_components103.default.table`
15791
+ var import_styled_components104 = __toESM(require("styled-components"));
15792
+ var import_jsx_runtime298 = require("react/jsx-runtime");
15793
+ var StyledTable = import_styled_components104.default.table`
15766
15794
  width: 100%;
15767
15795
  border-collapse: collapse;
15768
15796
 
15769
- ${({ $divided }) => $divided && import_styled_components103.css`
15797
+ ${({ $divided }) => $divided && import_styled_components104.css`
15770
15798
  tr {
15771
15799
  border-bottom: 1px solid var(--wui-color-border);
15772
15800
  }
15773
15801
  `}
15774
15802
 
15775
- ${({ $striped }) => $striped && import_styled_components103.css`
15803
+ ${({ $striped }) => $striped && import_styled_components104.css`
15776
15804
  tbody tr:nth-child(even) {
15777
15805
  background-color: var(--wui-color-bg-surface-secondary);
15778
15806
  }
15779
15807
  `}
15780
15808
 
15781
- ${({ $visuallyHiddenHeader }) => $visuallyHiddenHeader && import_styled_components103.css`
15809
+ ${({ $visuallyHiddenHeader }) => $visuallyHiddenHeader && import_styled_components104.css`
15782
15810
  thead {
15783
15811
  ${visuallyHiddenStyle}
15784
15812
  }
@@ -15791,7 +15819,7 @@ var Table = ({
15791
15819
  visuallyHiddenHeader = false,
15792
15820
  ...props
15793
15821
  }) => {
15794
- return /* @__PURE__ */ (0, import_jsx_runtime297.jsx)(
15822
+ return /* @__PURE__ */ (0, import_jsx_runtime298.jsx)(
15795
15823
  StyledTable,
15796
15824
  {
15797
15825
  $divided: divided,
@@ -15804,35 +15832,35 @@ var Table = ({
15804
15832
  };
15805
15833
 
15806
15834
  // src/components/Table/TableBody.tsx
15807
- var import_styled_components104 = __toESM(require("styled-components"));
15835
+ var import_styled_components105 = __toESM(require("styled-components"));
15808
15836
 
15809
15837
  // src/components/Table/TableSectionContext.ts
15810
15838
  var import_react82 = require("react");
15811
15839
  var TableSectionContext = (0, import_react82.createContext)(null);
15812
15840
 
15813
15841
  // src/components/Table/TableBody.tsx
15814
- var import_jsx_runtime298 = require("react/jsx-runtime");
15815
- var StyledTableBody = import_styled_components104.default.tbody``;
15842
+ var import_jsx_runtime299 = require("react/jsx-runtime");
15843
+ var StyledTableBody = import_styled_components105.default.tbody``;
15816
15844
  var TableBody = ({ children, ...props }) => {
15817
- return /* @__PURE__ */ (0, import_jsx_runtime298.jsx)(TableSectionContext.Provider, { value: "body", children: /* @__PURE__ */ (0, import_jsx_runtime298.jsx)(StyledTableBody, { ...props, children }) });
15845
+ return /* @__PURE__ */ (0, import_jsx_runtime299.jsx)(TableSectionContext.Provider, { value: "body", children: /* @__PURE__ */ (0, import_jsx_runtime299.jsx)(StyledTableBody, { ...props, children }) });
15818
15846
  };
15819
15847
 
15820
15848
  // src/components/Table/TableCell.tsx
15821
15849
  var import_react83 = require("react");
15822
- var import_styled_components105 = __toESM(require("styled-components"));
15823
- var import_jsx_runtime299 = require("react/jsx-runtime");
15824
- var sharedStyles = import_styled_components105.css`
15850
+ var import_styled_components106 = __toESM(require("styled-components"));
15851
+ var import_jsx_runtime300 = require("react/jsx-runtime");
15852
+ var sharedStyles = import_styled_components106.css`
15825
15853
  color: var(--wui-color-text);
15826
15854
  padding: var(--wui-space-02);
15827
15855
  text-align: left;
15828
15856
  `;
15829
- var StyledTh = import_styled_components105.default.th`
15857
+ var StyledTh = import_styled_components106.default.th`
15830
15858
  ${sharedStyles}
15831
15859
  font-size: var(--wui-typography-body-4-size);
15832
15860
  font-weight: var(--wui-typography-weight-label-bold);
15833
15861
  line-height: var(--wui-typography-body-4-line-height);
15834
15862
  `;
15835
- var StyledTd = import_styled_components105.default.td`
15863
+ var StyledTd = import_styled_components106.default.td`
15836
15864
  ${sharedStyles}
15837
15865
  font-size: var(--wui-typography-body-2-size);
15838
15866
  font-weight: var(--wui-typography-body-2-weight);
@@ -15841,33 +15869,33 @@ var StyledTd = import_styled_components105.default.td`
15841
15869
  var TableCell = ({ children, ...props }) => {
15842
15870
  const section = (0, import_react83.useContext)(TableSectionContext);
15843
15871
  if (section === "head") {
15844
- return /* @__PURE__ */ (0, import_jsx_runtime299.jsx)(StyledTh, { ...props, children });
15872
+ return /* @__PURE__ */ (0, import_jsx_runtime300.jsx)(StyledTh, { ...props, children });
15845
15873
  }
15846
- return /* @__PURE__ */ (0, import_jsx_runtime299.jsx)(StyledTd, { ...props, children });
15874
+ return /* @__PURE__ */ (0, import_jsx_runtime300.jsx)(StyledTd, { ...props, children });
15847
15875
  };
15848
15876
 
15849
15877
  // src/components/Table/TableFoot.tsx
15850
- var import_styled_components106 = __toESM(require("styled-components"));
15851
- var import_jsx_runtime300 = require("react/jsx-runtime");
15852
- var StyledTableFoot = import_styled_components106.default.tfoot``;
15878
+ var import_styled_components107 = __toESM(require("styled-components"));
15879
+ var import_jsx_runtime301 = require("react/jsx-runtime");
15880
+ var StyledTableFoot = import_styled_components107.default.tfoot``;
15853
15881
  var TableFoot = ({ children, ...props }) => {
15854
- return /* @__PURE__ */ (0, import_jsx_runtime300.jsx)(TableSectionContext.Provider, { value: "footer", children: /* @__PURE__ */ (0, import_jsx_runtime300.jsx)(StyledTableFoot, { ...props, children }) });
15882
+ return /* @__PURE__ */ (0, import_jsx_runtime301.jsx)(TableSectionContext.Provider, { value: "footer", children: /* @__PURE__ */ (0, import_jsx_runtime301.jsx)(StyledTableFoot, { ...props, children }) });
15855
15883
  };
15856
15884
 
15857
15885
  // src/components/Table/TableHead.tsx
15858
- var import_styled_components107 = __toESM(require("styled-components"));
15859
- var import_jsx_runtime301 = require("react/jsx-runtime");
15860
- var StyledThead = import_styled_components107.default.thead``;
15886
+ var import_styled_components108 = __toESM(require("styled-components"));
15887
+ var import_jsx_runtime302 = require("react/jsx-runtime");
15888
+ var StyledThead = import_styled_components108.default.thead``;
15861
15889
  var TableHead = ({ children, ...props }) => {
15862
- return /* @__PURE__ */ (0, import_jsx_runtime301.jsx)(TableSectionContext.Provider, { value: "head", children: /* @__PURE__ */ (0, import_jsx_runtime301.jsx)(StyledThead, { ...props, children }) });
15890
+ return /* @__PURE__ */ (0, import_jsx_runtime302.jsx)(TableSectionContext.Provider, { value: "head", children: /* @__PURE__ */ (0, import_jsx_runtime302.jsx)(StyledThead, { ...props, children }) });
15863
15891
  };
15864
15892
 
15865
15893
  // src/components/Table/TableRow.tsx
15866
- var import_styled_components108 = __toESM(require("styled-components"));
15867
- var import_jsx_runtime302 = require("react/jsx-runtime");
15868
- var StyledTableRow = import_styled_components108.default.tr``;
15894
+ var import_styled_components109 = __toESM(require("styled-components"));
15895
+ var import_jsx_runtime303 = require("react/jsx-runtime");
15896
+ var StyledTableRow = import_styled_components109.default.tr``;
15869
15897
  var TableRow = ({ children, ...props }) => {
15870
- return /* @__PURE__ */ (0, import_jsx_runtime302.jsx)(StyledTableRow, { ...props, children });
15898
+ return /* @__PURE__ */ (0, import_jsx_runtime303.jsx)(StyledTableRow, { ...props, children });
15871
15899
  };
15872
15900
 
15873
15901
  // src/components/Tabs/Tabs.tsx
@@ -15888,7 +15916,7 @@ var useTabsValue = () => {
15888
15916
  };
15889
15917
 
15890
15918
  // src/components/Tabs/Tabs.tsx
15891
- var import_jsx_runtime303 = require("react/jsx-runtime");
15919
+ var import_jsx_runtime304 = require("react/jsx-runtime");
15892
15920
  var Tabs = ({
15893
15921
  children,
15894
15922
  value: valueProp,
@@ -15916,42 +15944,42 @@ var Tabs = ({
15916
15944
  if ((0, import_type_guards61.isNotNil)(defaultValue)) {
15917
15945
  rootProps.defaultValue = defaultValue;
15918
15946
  }
15919
- return /* @__PURE__ */ (0, import_jsx_runtime303.jsx)(import_react_tabs.Root, { ...rootProps, children: /* @__PURE__ */ (0, import_jsx_runtime303.jsx)(TabsValueProvider, { value: value ?? defaultValue, children: /* @__PURE__ */ (0, import_jsx_runtime303.jsx)(SelectedItemStyleProvider, { children }) }) });
15947
+ return /* @__PURE__ */ (0, import_jsx_runtime304.jsx)(import_react_tabs.Root, { ...rootProps, children: /* @__PURE__ */ (0, import_jsx_runtime304.jsx)(TabsValueProvider, { value: value ?? defaultValue, children: /* @__PURE__ */ (0, import_jsx_runtime304.jsx)(SelectedItemStyleProvider, { children }) }) });
15920
15948
  };
15921
15949
  Tabs.displayName = "Tabs_UI";
15922
15950
 
15923
15951
  // src/components/Tabs/TabsContent.tsx
15924
15952
  var import_react_tabs2 = require("@radix-ui/react-tabs");
15925
- var import_jsx_runtime304 = require("react/jsx-runtime");
15953
+ var import_jsx_runtime305 = require("react/jsx-runtime");
15926
15954
  var TabsContent = ({ children, value }) => {
15927
- return /* @__PURE__ */ (0, import_jsx_runtime304.jsx)(import_react_tabs2.Content, { value, children });
15955
+ return /* @__PURE__ */ (0, import_jsx_runtime305.jsx)(import_react_tabs2.Content, { value, children });
15928
15956
  };
15929
15957
  TabsContent.displayName = "TabsContent_UI";
15930
15958
 
15931
15959
  // src/components/Tabs/TabsList.tsx
15932
15960
  var import_react_tabs3 = require("@radix-ui/react-tabs");
15933
- var import_styled_components110 = __toESM(require("styled-components"));
15961
+ var import_styled_components111 = __toESM(require("styled-components"));
15934
15962
 
15935
15963
  // src/components/Tabs/SelectedTabIndicator.tsx
15936
15964
  var import_type_guards62 = require("@wistia/type-guards");
15937
15965
 
15938
15966
  // src/components/Tabs/TabsSelectedItemIndicatorDiv.tsx
15939
- var import_styled_components109 = __toESM(require("styled-components"));
15940
- var TabsSelectedItemIndicatorDiv = (0, import_styled_components109.default)(SelectedItemIndicatorDiv)`
15967
+ var import_styled_components110 = __toESM(require("styled-components"));
15968
+ var TabsSelectedItemIndicatorDiv = (0, import_styled_components110.default)(SelectedItemIndicatorDiv)`
15941
15969
  &:has(~ button[role='tab']:focus-visible) {
15942
15970
  outline: 2px solid var(--wui-color-focus-ring);
15943
15971
  }
15944
15972
  `;
15945
15973
 
15946
15974
  // src/components/Tabs/SelectedTabIndicator.tsx
15947
- var import_jsx_runtime305 = require("react/jsx-runtime");
15975
+ var import_jsx_runtime306 = require("react/jsx-runtime");
15948
15976
  var SelectedTabIndicator = () => {
15949
15977
  const { selectedItemIndicatorStyle } = useSelectedItemStyle();
15950
15978
  const selectedValue = useTabsValue();
15951
15979
  if (selectedValue == null || (0, import_type_guards62.isUndefined)(selectedItemIndicatorStyle)) {
15952
15980
  return null;
15953
15981
  }
15954
- return /* @__PURE__ */ (0, import_jsx_runtime305.jsx)(
15982
+ return /* @__PURE__ */ (0, import_jsx_runtime306.jsx)(
15955
15983
  TabsSelectedItemIndicatorDiv,
15956
15984
  {
15957
15985
  "data-wui-selected-item-indicator": true,
@@ -15961,19 +15989,19 @@ var SelectedTabIndicator = () => {
15961
15989
  };
15962
15990
 
15963
15991
  // src/components/Tabs/TabsList.tsx
15964
- var import_jsx_runtime306 = require("react/jsx-runtime");
15965
- var StyledRadixTabsList = (0, import_styled_components110.default)(import_react_tabs3.List)`
15992
+ var import_jsx_runtime307 = require("react/jsx-runtime");
15993
+ var StyledRadixTabsList = (0, import_styled_components111.default)(import_react_tabs3.List)`
15966
15994
  ${segmentedControlStyles}
15967
15995
  `;
15968
15996
  var TabsList = ({ children, fullWidth = true, ...props }) => {
15969
- return /* @__PURE__ */ (0, import_jsx_runtime306.jsxs)(
15997
+ return /* @__PURE__ */ (0, import_jsx_runtime307.jsxs)(
15970
15998
  StyledRadixTabsList,
15971
15999
  {
15972
16000
  $fullWidth: fullWidth,
15973
16001
  "aria-label": props["aria-label"],
15974
16002
  children: [
15975
16003
  children,
15976
- /* @__PURE__ */ (0, import_jsx_runtime306.jsx)(SelectedTabIndicator, {})
16004
+ /* @__PURE__ */ (0, import_jsx_runtime307.jsx)(SelectedTabIndicator, {})
15977
16005
  ]
15978
16006
  }
15979
16007
  );
@@ -15985,9 +16013,9 @@ var import_react86 = require("react");
15985
16013
  var import_type_guards63 = require("@wistia/type-guards");
15986
16014
 
15987
16015
  // src/components/Tabs/StyledRadixTabsTrigger.tsx
15988
- var import_styled_components111 = __toESM(require("styled-components"));
16016
+ var import_styled_components112 = __toESM(require("styled-components"));
15989
16017
  var import_react_tabs4 = require("@radix-ui/react-tabs");
15990
- var StyledRadixTabsTrigger = (0, import_styled_components111.default)(import_react_tabs4.Trigger)`
16018
+ var StyledRadixTabsTrigger = (0, import_styled_components112.default)(import_react_tabs4.Trigger)`
15991
16019
  ${segmentedControlItemStyles}
15992
16020
 
15993
16021
  &:focus-visible {
@@ -15996,7 +16024,7 @@ var StyledRadixTabsTrigger = (0, import_styled_components111.default)(import_rea
15996
16024
  `;
15997
16025
 
15998
16026
  // src/components/Tabs/TabsTrigger.tsx
15999
- var import_jsx_runtime307 = require("react/jsx-runtime");
16027
+ var import_jsx_runtime308 = require("react/jsx-runtime");
16000
16028
  var TabsTrigger = (0, import_react86.forwardRef)(
16001
16029
  ({ disabled = false, icon, label, "aria-label": ariaLabel, value, ...otherProps }, forwardedRef) => {
16002
16030
  const selectedValue = useTabsValue();
@@ -16028,7 +16056,7 @@ var TabsTrigger = (0, import_react86.forwardRef)(
16028
16056
  resizeObserver.disconnect();
16029
16057
  };
16030
16058
  }, [selectedValue, setSelectedItemMeasurements, value]);
16031
- return /* @__PURE__ */ (0, import_jsx_runtime307.jsxs)(
16059
+ return /* @__PURE__ */ (0, import_jsx_runtime308.jsxs)(
16032
16060
  StyledRadixTabsTrigger,
16033
16061
  {
16034
16062
  ...otherProps,
@@ -16048,10 +16076,10 @@ var TabsTrigger = (0, import_react86.forwardRef)(
16048
16076
  TabsTrigger.displayName = "TabsTrigger_UI";
16049
16077
 
16050
16078
  // src/components/Thumbnail/ThumbnailBadge.tsx
16051
- var import_styled_components112 = __toESM(require("styled-components"));
16079
+ var import_styled_components113 = __toESM(require("styled-components"));
16052
16080
  var import_type_guards64 = require("@wistia/type-guards");
16053
- var import_jsx_runtime308 = require("react/jsx-runtime");
16054
- var StyledThumbnailBadge = import_styled_components112.default.div`
16081
+ var import_jsx_runtime309 = require("react/jsx-runtime");
16082
+ var StyledThumbnailBadge = import_styled_components113.default.div`
16055
16083
  align-items: center;
16056
16084
  background-color: rgb(0 0 0 / 50%);
16057
16085
  border-radius: var(--wui-border-radius-01);
@@ -16076,23 +16104,23 @@ var StyledThumbnailBadge = import_styled_components112.default.div`
16076
16104
  }
16077
16105
  `;
16078
16106
  var ThumbnailBadge = ({ icon, label, ...props }) => {
16079
- return /* @__PURE__ */ (0, import_jsx_runtime308.jsxs)(StyledThumbnailBadge, { ...props, children: [
16107
+ return /* @__PURE__ */ (0, import_jsx_runtime309.jsxs)(StyledThumbnailBadge, { ...props, children: [
16080
16108
  (0, import_type_guards64.isNotNil)(icon) && icon,
16081
- /* @__PURE__ */ (0, import_jsx_runtime308.jsx)("span", { children: label })
16109
+ /* @__PURE__ */ (0, import_jsx_runtime309.jsx)("span", { children: label })
16082
16110
  ] });
16083
16111
  };
16084
16112
  ThumbnailBadge.displayName = "ThumbnailBadge_UI";
16085
16113
 
16086
16114
  // src/components/Thumbnail/Thumbnail.tsx
16087
16115
  var import_react87 = require("react");
16088
- var import_styled_components115 = __toESM(require("styled-components"));
16116
+ var import_styled_components116 = __toESM(require("styled-components"));
16089
16117
  var import_type_guards67 = require("@wistia/type-guards");
16090
16118
 
16091
16119
  // src/private/helpers/getBackgroundGradient/getBackgroundGradient.ts
16092
16120
  var import_type_guards65 = require("@wistia/type-guards");
16093
- var import_styled_components113 = require("styled-components");
16121
+ var import_styled_components114 = require("styled-components");
16094
16122
  var gradients = {
16095
- defaultDarkOne: import_styled_components113.css`
16123
+ defaultDarkOne: import_styled_components114.css`
16096
16124
  background-color: #222d66;
16097
16125
  background-image:
16098
16126
  radial-gradient(farthest-corner at top right, #222d66, transparent 70%),
@@ -16100,7 +16128,7 @@ var gradients = {
16100
16128
  radial-gradient(farthest-corner at bottom left, #6b84ff, transparent 57%),
16101
16129
  radial-gradient(farthest-corner at top left, #2949e5, transparent 68%);
16102
16130
  `,
16103
- defaultDarkTwo: import_styled_components113.css`
16131
+ defaultDarkTwo: import_styled_components114.css`
16104
16132
  background-color: #222d66;
16105
16133
  background-image:
16106
16134
  radial-gradient(farthest-corner at top left, #6b84ff, transparent 100%),
@@ -16108,7 +16136,7 @@ var gradients = {
16108
16136
  radial-gradient(farthest-corner at bottom right, #2949e5, transparent 50%),
16109
16137
  radial-gradient(farthest-corner at top right, #2949e5, transparent 70%);
16110
16138
  `,
16111
- defaultLightOne: import_styled_components113.css`
16139
+ defaultLightOne: import_styled_components114.css`
16112
16140
  background-color: #ccd5ff;
16113
16141
  background-image:
16114
16142
  radial-gradient(farthest-corner at bottom right, #ccd5ff, transparent 55%),
@@ -16116,13 +16144,13 @@ var gradients = {
16116
16144
  radial-gradient(farthest-corner at top right, #6b84ff, transparent 50%),
16117
16145
  radial-gradient(farthest-corner at bottom left, #f7f8ff, transparent 50%);
16118
16146
  `,
16119
- defaultLightTwo: import_styled_components113.css`
16147
+ defaultLightTwo: import_styled_components114.css`
16120
16148
  background-color: #ccd5ff;
16121
16149
  background-image:
16122
16150
  radial-gradient(ellipse at top, #ccd5ff, transparent),
16123
16151
  radial-gradient(ellipse at bottom, #6b84ff, transparent);
16124
16152
  `,
16125
- defaultMidOne: import_styled_components113.css`
16153
+ defaultMidOne: import_styled_components114.css`
16126
16154
  background-color: #6b84ff;
16127
16155
  background-image:
16128
16156
  radial-gradient(farthest-corner at top right, #2949e5, transparent 70%),
@@ -16130,13 +16158,13 @@ var gradients = {
16130
16158
  radial-gradient(farthest-corner at top left, #6b84ff, transparent 80%),
16131
16159
  radial-gradient(farthest-corner at bottom left, #222d66, transparent 57%);
16132
16160
  `,
16133
- defaultMidTwo: import_styled_components113.css`
16161
+ defaultMidTwo: import_styled_components114.css`
16134
16162
  background-color: #6b84ff;
16135
16163
  background-image:
16136
16164
  radial-gradient(ellipse at top, #2949e5, transparent),
16137
16165
  radial-gradient(ellipse at bottom, #ccd5ff, transparent);
16138
16166
  `,
16139
- green: import_styled_components113.css`
16167
+ green: import_styled_components114.css`
16140
16168
  background-color: #fafffa;
16141
16169
  background-image:
16142
16170
  radial-gradient(farthest-corner at bottom left, #b0e5a5, transparent 50%),
@@ -16144,7 +16172,7 @@ var gradients = {
16144
16172
  radial-gradient(farthest-corner at top left, #44b62d, transparent 65%),
16145
16173
  radial-gradient(farthest-corner at bottom right, #44b62d, transparent 55%);
16146
16174
  `,
16147
- greenWithPop: import_styled_components113.css`
16175
+ greenWithPop: import_styled_components114.css`
16148
16176
  background-color: #fafffa;
16149
16177
  background-image:
16150
16178
  radial-gradient(farthest-corner at bottom left, #b0e5a5, transparent 50%),
@@ -16152,7 +16180,7 @@ var gradients = {
16152
16180
  radial-gradient(farthest-corner at top left, #44b62d, transparent 65%),
16153
16181
  radial-gradient(farthest-corner at bottom right, #44b62d, transparent 55%);
16154
16182
  `,
16155
- pink: import_styled_components113.css`
16183
+ pink: import_styled_components114.css`
16156
16184
  background-color: #fffff0;
16157
16185
  background-image:
16158
16186
  radial-gradient(farthest-corner at bottom left, #ffc7e8, transparent 50%),
@@ -16160,7 +16188,7 @@ var gradients = {
16160
16188
  radial-gradient(farthest-corner at top left, #ff40b3, transparent 65%),
16161
16189
  radial-gradient(farthest-corner at bottom right, #ff40b3, transparent 55%);
16162
16190
  `,
16163
- pinkWithPop: import_styled_components113.css`
16191
+ pinkWithPop: import_styled_components114.css`
16164
16192
  background-color: #fffff0;
16165
16193
  background-image:
16166
16194
  radial-gradient(farthest-corner at top right, #e0128e, transparent 70%),
@@ -16168,7 +16196,7 @@ var gradients = {
16168
16196
  radial-gradient(farthest-corner at bottom right, #ff40b3, transparent 55%),
16169
16197
  radial-gradient(farthest-corner at bottom left, #2949e5, transparent 50%);
16170
16198
  `,
16171
- playfulGradientOne: import_styled_components113.css`
16199
+ playfulGradientOne: import_styled_components114.css`
16172
16200
  background-color: #f7f8ff;
16173
16201
  background-image:
16174
16202
  radial-gradient(farthest-corner at top left, #d65cff, transparent 68%),
@@ -16176,7 +16204,7 @@ var gradients = {
16176
16204
  radial-gradient(farthest-corner at bottom left, #ffc7e8, transparent 57%),
16177
16205
  radial-gradient(farthest-corner at top right, #ffcaba, transparent 70%);
16178
16206
  `,
16179
- playfulGradientTwo: import_styled_components113.css`
16207
+ playfulGradientTwo: import_styled_components114.css`
16180
16208
  background-color: #f7f8ff;
16181
16209
  background-image:
16182
16210
  radial-gradient(farthest-corner at top left, #44b62d, transparent 68%),
@@ -16184,13 +16212,13 @@ var gradients = {
16184
16212
  radial-gradient(farthest-corner at bottom left, #ccd5ff, transparent 57%),
16185
16213
  radial-gradient(farthest-corner at top right, #2949e5, transparent 70%);
16186
16214
  `,
16187
- purple: import_styled_components113.css`
16215
+ purple: import_styled_components114.css`
16188
16216
  background-color: #f2caff;
16189
16217
  background-image:
16190
16218
  radial-gradient(ellipse at 0% 100%, #f9e5ff, transparent 50%),
16191
16219
  radial-gradient(ellipse at 100% 0%, #e093fa, transparent 70%);
16192
16220
  `,
16193
- purpleWithPop: import_styled_components113.css`
16221
+ purpleWithPop: import_styled_components114.css`
16194
16222
  background-color: #f2caff;
16195
16223
  background-image:
16196
16224
  radial-gradient(farthest-corner at bottom left, #f2caff, transparent 50%),
@@ -16198,7 +16226,7 @@ var gradients = {
16198
16226
  radial-gradient(farthest-corner at bottom right, #d65cff, transparent 55%),
16199
16227
  radial-gradient(farthest-corner at top right, #2949e5, transparent 70%);
16200
16228
  `,
16201
- yellow: import_styled_components113.css`
16229
+ yellow: import_styled_components114.css`
16202
16230
  background-color: #fffff0;
16203
16231
  background-image:
16204
16232
  radial-gradient(farthest-corner at bottom left, #eff18d, transparent 50%),
@@ -16206,7 +16234,7 @@ var gradients = {
16206
16234
  radial-gradient(farthest-corner at top left, #e8ec1e, transparent 65%),
16207
16235
  radial-gradient(farthest-corner at bottom right, #e8ec1e, transparent 55%);
16208
16236
  `,
16209
- yellowWithPop: import_styled_components113.css`
16237
+ yellowWithPop: import_styled_components114.css`
16210
16238
  background-color: #fffff0;
16211
16239
  background-image:
16212
16240
  radial-gradient(farthest-corner at bottom left, #eff18d, transparent 50%),
@@ -16221,10 +16249,10 @@ var getBackgroundGradient = (gradientName = void 0) => {
16221
16249
  };
16222
16250
 
16223
16251
  // src/components/Thumbnail/ThumbnailStoryboardViewer.tsx
16224
- var import_styled_components114 = __toESM(require("styled-components"));
16252
+ var import_styled_components115 = __toESM(require("styled-components"));
16225
16253
  var import_type_guards66 = require("@wistia/type-guards");
16226
- var import_jsx_runtime309 = require("react/jsx-runtime");
16227
- var ScrubLine = import_styled_components114.default.div`
16254
+ var import_jsx_runtime310 = require("react/jsx-runtime");
16255
+ var ScrubLine = import_styled_components115.default.div`
16228
16256
  position: absolute;
16229
16257
  top: 0;
16230
16258
  height: 100%;
@@ -16327,14 +16355,14 @@ var ThumbnailStoryboardViewer = ({
16327
16355
  backgroundPosition,
16328
16356
  backgroundSize
16329
16357
  };
16330
- return /* @__PURE__ */ (0, import_jsx_runtime309.jsxs)(
16358
+ return /* @__PURE__ */ (0, import_jsx_runtime310.jsxs)(
16331
16359
  "div",
16332
16360
  {
16333
16361
  ...props,
16334
16362
  style: viewerStyles,
16335
16363
  children: [
16336
- /* @__PURE__ */ (0, import_jsx_runtime309.jsx)("div", { style: storyboardStyles }),
16337
- showScrubLine ? /* @__PURE__ */ (0, import_jsx_runtime309.jsx)(
16364
+ /* @__PURE__ */ (0, import_jsx_runtime310.jsx)("div", { style: storyboardStyles }),
16365
+ showScrubLine ? /* @__PURE__ */ (0, import_jsx_runtime310.jsx)(
16338
16366
  ScrubLine,
16339
16367
  {
16340
16368
  style: {
@@ -16348,20 +16376,20 @@ var ThumbnailStoryboardViewer = ({
16348
16376
  };
16349
16377
 
16350
16378
  // src/components/Thumbnail/Thumbnail.tsx
16351
- var import_jsx_runtime310 = require("react/jsx-runtime");
16352
- var WideThumbnailImage = import_styled_components115.default.img`
16379
+ var import_jsx_runtime311 = require("react/jsx-runtime");
16380
+ var WideThumbnailImage = import_styled_components116.default.img`
16353
16381
  height: 100%;
16354
16382
  object-fit: cover;
16355
16383
  width: 100%;
16356
16384
  `;
16357
- var SquareThumbnailImage = import_styled_components115.default.img`
16385
+ var SquareThumbnailImage = import_styled_components116.default.img`
16358
16386
  backdrop-filter: blur(8px);
16359
16387
  object-fit: contain;
16360
16388
  width: 100%;
16361
16389
  `;
16362
16390
  var ThumbnailImage = ({ thumbnailImageType, thumbnailUrl }) => {
16363
16391
  if (thumbnailImageType === "wide") {
16364
- return /* @__PURE__ */ (0, import_jsx_runtime310.jsx)(
16392
+ return /* @__PURE__ */ (0, import_jsx_runtime311.jsx)(
16365
16393
  WideThumbnailImage,
16366
16394
  {
16367
16395
  alt: "",
@@ -16370,7 +16398,7 @@ var ThumbnailImage = ({ thumbnailImageType, thumbnailUrl }) => {
16370
16398
  }
16371
16399
  );
16372
16400
  }
16373
- return /* @__PURE__ */ (0, import_jsx_runtime310.jsx)(
16401
+ return /* @__PURE__ */ (0, import_jsx_runtime311.jsx)(
16374
16402
  SquareThumbnailImage,
16375
16403
  {
16376
16404
  alt: "",
@@ -16379,7 +16407,7 @@ var ThumbnailImage = ({ thumbnailImageType, thumbnailUrl }) => {
16379
16407
  }
16380
16408
  );
16381
16409
  };
16382
- var StyledThumbnail = import_styled_components115.default.div`
16410
+ var StyledThumbnail = import_styled_components116.default.div`
16383
16411
  background-image: ${({ $backgroundUrl }) => (0, import_type_guards67.isNotNil)($backgroundUrl) ? `url('${$backgroundUrl}')` : void 0};
16384
16412
  ${({ $backgroundUrl, $gradientBackground }) => (
16385
16413
  // if we don't have $backgroundUrl show a gradient
@@ -16473,7 +16501,7 @@ var Thumbnail = (0, import_react87.forwardRef)(
16473
16501
  } = storyboard;
16474
16502
  const targetWidth = (0, import_type_guards67.isString)(width) ? parseInt(width, 10) : Number(width);
16475
16503
  const effectiveCursorPosition = isStoryboardReady ? cursorPosition : null;
16476
- return /* @__PURE__ */ (0, import_jsx_runtime310.jsx)(
16504
+ return /* @__PURE__ */ (0, import_jsx_runtime311.jsx)(
16477
16505
  ThumbnailStoryboardViewer,
16478
16506
  {
16479
16507
  cursorPosition: effectiveCursorPosition,
@@ -16493,7 +16521,7 @@ var Thumbnail = (0, import_react87.forwardRef)(
16493
16521
  if (shouldRenderStoryboard) {
16494
16522
  thumbnailContent = renderStoryboard();
16495
16523
  } else if ((0, import_type_guards67.isNotNil)(thumbnailUrl)) {
16496
- thumbnailContent = /* @__PURE__ */ (0, import_jsx_runtime310.jsx)(
16524
+ thumbnailContent = /* @__PURE__ */ (0, import_jsx_runtime311.jsx)(
16497
16525
  ThumbnailImage,
16498
16526
  {
16499
16527
  thumbnailImageType,
@@ -16503,7 +16531,7 @@ var Thumbnail = (0, import_react87.forwardRef)(
16503
16531
  } else {
16504
16532
  thumbnailContent = null;
16505
16533
  }
16506
- return /* @__PURE__ */ (0, import_jsx_runtime310.jsxs)(
16534
+ return /* @__PURE__ */ (0, import_jsx_runtime311.jsxs)(
16507
16535
  StyledThumbnail,
16508
16536
  {
16509
16537
  ref,
@@ -16528,13 +16556,13 @@ Thumbnail.displayName = "Thumbnail_UI";
16528
16556
 
16529
16557
  // src/components/ThumbnailCollage/ThumbnailCollage.tsx
16530
16558
  var import_react88 = __toESM(require("react"));
16531
- var import_styled_components116 = __toESM(require("styled-components"));
16559
+ var import_styled_components117 = __toESM(require("styled-components"));
16532
16560
  var import_type_guards68 = require("@wistia/type-guards");
16533
- var import_jsx_runtime311 = (
16561
+ var import_jsx_runtime312 = (
16534
16562
  // ThumbnailCollage will fallback to a Thumbnail with a gradient background if no children are provided
16535
16563
  require("react/jsx-runtime")
16536
16564
  );
16537
- var StyledThumbnailCollage = import_styled_components116.default.div`
16565
+ var StyledThumbnailCollage = import_styled_components117.default.div`
16538
16566
  display: grid;
16539
16567
  gap: var(--wui-space-01);
16540
16568
  width: 100%;
@@ -16615,7 +16643,7 @@ var ThumbnailCollage = ({
16615
16643
  children: void 0
16616
16644
  });
16617
16645
  }) : [
16618
- /* @__PURE__ */ (0, import_jsx_runtime311.jsx)(
16646
+ /* @__PURE__ */ (0, import_jsx_runtime312.jsx)(
16619
16647
  Thumbnail,
16620
16648
  {
16621
16649
  gradientBackground,
@@ -16624,7 +16652,7 @@ var ThumbnailCollage = ({
16624
16652
  "fallback"
16625
16653
  )
16626
16654
  ];
16627
- return /* @__PURE__ */ (0, import_jsx_runtime311.jsx)(
16655
+ return /* @__PURE__ */ (0, import_jsx_runtime312.jsx)(
16628
16656
  StyledThumbnailCollage,
16629
16657
  {
16630
16658
  $gradientBackground: gradientBackground,
@@ -16636,26 +16664,26 @@ var ThumbnailCollage = ({
16636
16664
  };
16637
16665
 
16638
16666
  // src/components/WistiaLogo/WistiaLogo.tsx
16639
- var import_styled_components117 = __toESM(require("styled-components"));
16667
+ var import_styled_components118 = __toESM(require("styled-components"));
16640
16668
  var import_type_guards69 = require("@wistia/type-guards");
16641
- var import_jsx_runtime312 = require("react/jsx-runtime");
16669
+ var import_jsx_runtime313 = require("react/jsx-runtime");
16642
16670
  var renderBrandmark = (brandmarkColor, iconOnly) => {
16643
16671
  if (iconOnly) {
16644
- return /* @__PURE__ */ (0, import_jsx_runtime312.jsx)(
16672
+ return /* @__PURE__ */ (0, import_jsx_runtime313.jsx)(
16645
16673
  "g",
16646
16674
  {
16647
16675
  "data-testid": "ui-wistia-logo-brandmark",
16648
16676
  fill: brandmarkColor,
16649
- children: /* @__PURE__ */ (0, import_jsx_runtime312.jsx)("path", { d: "M16.09 17.1h-5.2c-1.58 0-3.08.68-4.11 1.87L.21 26.53c4.78.25 9.78.25 13.3.25 18.31 0 20.89-11.27 20.89-16.55-1.59 1.93-6.06 6.87-18.32 6.87ZM32.14 0c-.08.92-.59 4.69-11.31 4.69-8.72 0-12.24 0-20.83-.17l6.44 7.4a6.657 6.657 0 0 0 4.96 2.3c2.13.03 5.05.06 5.53.06 11.01 0 17.19-5.05 17.19-9.89 0-2.01-.67-3.44-1.97-4.4Z" })
16677
+ children: /* @__PURE__ */ (0, import_jsx_runtime313.jsx)("path", { d: "M16.09 17.1h-5.2c-1.58 0-3.08.68-4.11 1.87L.21 26.53c4.78.25 9.78.25 13.3.25 18.31 0 20.89-11.27 20.89-16.55-1.59 1.93-6.06 6.87-18.32 6.87ZM32.14 0c-.08.92-.59 4.69-11.31 4.69-8.72 0-12.24 0-20.83-.17l6.44 7.4a6.657 6.657 0 0 0 4.96 2.3c2.13.03 5.05.06 5.53.06 11.01 0 17.19-5.05 17.19-9.89 0-2.01-.67-3.44-1.97-4.4Z" })
16650
16678
  }
16651
16679
  );
16652
16680
  }
16653
- return /* @__PURE__ */ (0, import_jsx_runtime312.jsx)(
16681
+ return /* @__PURE__ */ (0, import_jsx_runtime313.jsx)(
16654
16682
  "g",
16655
16683
  {
16656
16684
  "data-testid": "ui-wistia-logo-brandmark",
16657
16685
  fill: brandmarkColor,
16658
- children: /* @__PURE__ */ (0, import_jsx_runtime312.jsx)("path", { d: "M16.09 21.37h-5.2c-1.58 0-3.08.68-4.11 1.87L.21 30.8c4.78.25 9.78.25 13.3.25 18.31 0 20.89-11.27 20.89-16.55-1.59 1.93-6.06 6.87-18.32 6.87Zm16.05-17.1c-.08.92-.59 4.69-11.31 4.69-8.72 0-12.24 0-20.83-.17l6.44 7.4a6.657 6.657 0 0 0 4.96 2.3c2.13.03 5.05.06 5.53.06 11.01 0 17.19-5.05 17.19-9.89 0-2.01-.67-3.44-1.97-4.4Z" })
16686
+ children: /* @__PURE__ */ (0, import_jsx_runtime313.jsx)("path", { d: "M16.09 21.37h-5.2c-1.58 0-3.08.68-4.11 1.87L.21 30.8c4.78.25 9.78.25 13.3.25 18.31 0 20.89-11.27 20.89-16.55-1.59 1.93-6.06 6.87-18.32 6.87Zm16.05-17.1c-.08.92-.59 4.69-11.31 4.69-8.72 0-12.24 0-20.83-.17l6.44 7.4a6.657 6.657 0 0 0 4.96 2.3c2.13.03 5.05.06 5.53.06 11.01 0 17.19-5.05 17.19-9.89 0-2.01-.67-3.44-1.97-4.4Z" })
16659
16687
  }
16660
16688
  );
16661
16689
  };
@@ -16663,12 +16691,12 @@ var renderLogotype = (logotypeColor, iconOnly) => {
16663
16691
  if (iconOnly) {
16664
16692
  return null;
16665
16693
  }
16666
- return /* @__PURE__ */ (0, import_jsx_runtime312.jsx)(
16694
+ return /* @__PURE__ */ (0, import_jsx_runtime313.jsx)(
16667
16695
  "g",
16668
16696
  {
16669
16697
  "data-testid": "ui-wistia-logo-logotype",
16670
16698
  fill: logotypeColor,
16671
- children: /* @__PURE__ */ (0, import_jsx_runtime312.jsx)("path", { d: "M70.16 8.66v15.18c0 1.68-.35 3.09-1.05 4.23a6.612 6.612 0 0 1-2.85 2.54c-1.19.55-2.52.82-4.01.82s-2.8-.28-4.01-.85a6.655 6.655 0 0 1-3.11-2.96c-.08.15-.16.29-.24.42a6.552 6.552 0 0 1-2.87 2.54c-1.2.56-2.54.85-4.01.85s-2.8-.27-3.94-.82a6.214 6.214 0 0 1-2.71-2.52c-.67-1.14-1.01-2.56-1.02-4.25l-.22-15.18h7.34V22.3c0 .82.19 1.37.56 1.67.39.28.85.42 1.38.42s1.02-.15 1.45-.45c.43-.3.65-.85.65-1.65V8.65h7.3v13.64c0 .8.22 1.35.65 1.65.43.3.91.45 1.45.45s.99-.14 1.36-.42c.39-.3.58-.85.58-1.67V8.66h7.34Zm2.45 0v22.26h7.34V8.66h-7.34Zm5.67-1.87c.61-.3 1.08-.71 1.42-1.25.36-.55.53-1.19.53-1.94s-.18-1.34-.53-1.89A3.43 3.43 0 0 0 78.28.44c-.59-.3-1.25-.45-1.98-.45s-1.42.15-2.02.45c-.59.3-1.07.72-1.42 1.27-.36.55-.53 1.18-.53 1.89 0 1.1.38 1.97 1.13 2.63.76.65 1.71.98 2.85.98.73 0 1.39-.14 1.98-.42Zm8.86 1.96c-1.42.4-2.6 1.11-3.54 2.14-.93 1.02-1.4 2.4-1.4 4.12 0 1.11.17 2.09.51 2.94.36.85.82 1.62 1.38 2.34.22.28.55.65.98 1.11.37.4.64.72.8.96.18.24.27.47.27.69 0 .5-.4.87-1.2 1.09-.8.21-1.62.31-2.47.31-.1-.01-.22-.02-.33-.02l1.02 6.94c.42.07.92.11 1.51.11 1.9 0 3.6-.28 5.1-.85 1.5-.56 2.68-1.42 3.54-2.56.88-1.14 1.31-2.55 1.31-4.23 0-.68-.07-1.31-.22-1.87-.13-.58-.32-1.09-.56-1.54a6.64 6.64 0 0 0-.8-1.27c-.3-.37-.74-.82-1.34-1.36-.39-.33-.67-.59-.85-.8-.18-.22-.27-.45-.27-.67 0-.46.26-.79.78-.98.53-.19 1.17-.29 1.91-.29.25 0 .51.01.78.04l-.71-6.88a10.4 10.4 0 0 0-1.56-.11c-1.66 0-3.21.21-4.65.62Zm19.54 15.71c-.99 0-1.71-.23-2.14-.69-.42-.47-.62-1.18-.62-2.11v-6.57h4.21V8.66h-4.21V3.38l-7.34 1.85V24.1c0 2.45.47 4.29 1.4 5.52.95 1.22 2.45 1.83 4.49 1.83.95 0 1.86-.07 2.74-.22.88-.13 1.62-.34 2.25-.62l1.38-6.3c-.55.1-1.27.16-2.16.16Zm4.13-15.8v22.26h7.34V8.66h-7.34Zm5.67-1.87c.61-.3 1.08-.71 1.42-1.25.36-.55.53-1.19.53-1.94s-.18-1.34-.53-1.89a3.43 3.43 0 0 0-1.42-1.27c-.59-.3-1.25-.45-1.98-.45s-1.42.15-2.02.45c-.59.3-1.07.72-1.42 1.27-.36.55-.53 1.18-.53 1.89 0 1.1.38 1.97 1.14 2.63.76.65 1.71.98 2.85.98.73 0 1.39-.14 1.98-.42Zm27.51 1.87v22.26h-7.34v-2.28c-.41.43-.85.83-1.34 1.19-1.44 1.07-3.12 1.6-5.05 1.6s-3.61-.52-5.1-1.56c-1.48-1.05-2.63-2.47-3.45-4.25-.82-1.78-1.22-3.73-1.22-5.85s.41-4.07 1.22-5.83c.82-1.78 1.97-3.19 3.45-4.23 1.48-1.05 3.18-1.58 5.1-1.58s3.61.53 5.05 1.6c.48.36.93.75 1.34 1.19V8.66h7.34Zm-7.1 11.11c0-.8-.19-1.53-.56-2.18-.37-.67-.88-1.19-1.54-1.58-.64-.39-1.34-.58-2.09-.58s-1.45.19-2.09.58c-.64.39-1.15.91-1.54 1.58-.37.67-.56 1.39-.56 2.18s.19 1.51.56 2.18c.39.67.9 1.19 1.54 1.58.64.39 1.34.58 2.09.58s1.45-.19 2.09-.58c.65-.39 1.16-.91 1.54-1.56.37-.67.56-1.4.56-2.2Z" })
16699
+ children: /* @__PURE__ */ (0, import_jsx_runtime313.jsx)("path", { d: "M70.16 8.66v15.18c0 1.68-.35 3.09-1.05 4.23a6.612 6.612 0 0 1-2.85 2.54c-1.19.55-2.52.82-4.01.82s-2.8-.28-4.01-.85a6.655 6.655 0 0 1-3.11-2.96c-.08.15-.16.29-.24.42a6.552 6.552 0 0 1-2.87 2.54c-1.2.56-2.54.85-4.01.85s-2.8-.27-3.94-.82a6.214 6.214 0 0 1-2.71-2.52c-.67-1.14-1.01-2.56-1.02-4.25l-.22-15.18h7.34V22.3c0 .82.19 1.37.56 1.67.39.28.85.42 1.38.42s1.02-.15 1.45-.45c.43-.3.65-.85.65-1.65V8.65h7.3v13.64c0 .8.22 1.35.65 1.65.43.3.91.45 1.45.45s.99-.14 1.36-.42c.39-.3.58-.85.58-1.67V8.66h7.34Zm2.45 0v22.26h7.34V8.66h-7.34Zm5.67-1.87c.61-.3 1.08-.71 1.42-1.25.36-.55.53-1.19.53-1.94s-.18-1.34-.53-1.89A3.43 3.43 0 0 0 78.28.44c-.59-.3-1.25-.45-1.98-.45s-1.42.15-2.02.45c-.59.3-1.07.72-1.42 1.27-.36.55-.53 1.18-.53 1.89 0 1.1.38 1.97 1.13 2.63.76.65 1.71.98 2.85.98.73 0 1.39-.14 1.98-.42Zm8.86 1.96c-1.42.4-2.6 1.11-3.54 2.14-.93 1.02-1.4 2.4-1.4 4.12 0 1.11.17 2.09.51 2.94.36.85.82 1.62 1.38 2.34.22.28.55.65.98 1.11.37.4.64.72.8.96.18.24.27.47.27.69 0 .5-.4.87-1.2 1.09-.8.21-1.62.31-2.47.31-.1-.01-.22-.02-.33-.02l1.02 6.94c.42.07.92.11 1.51.11 1.9 0 3.6-.28 5.1-.85 1.5-.56 2.68-1.42 3.54-2.56.88-1.14 1.31-2.55 1.31-4.23 0-.68-.07-1.31-.22-1.87-.13-.58-.32-1.09-.56-1.54a6.64 6.64 0 0 0-.8-1.27c-.3-.37-.74-.82-1.34-1.36-.39-.33-.67-.59-.85-.8-.18-.22-.27-.45-.27-.67 0-.46.26-.79.78-.98.53-.19 1.17-.29 1.91-.29.25 0 .51.01.78.04l-.71-6.88a10.4 10.4 0 0 0-1.56-.11c-1.66 0-3.21.21-4.65.62Zm19.54 15.71c-.99 0-1.71-.23-2.14-.69-.42-.47-.62-1.18-.62-2.11v-6.57h4.21V8.66h-4.21V3.38l-7.34 1.85V24.1c0 2.45.47 4.29 1.4 5.52.95 1.22 2.45 1.83 4.49 1.83.95 0 1.86-.07 2.74-.22.88-.13 1.62-.34 2.25-.62l1.38-6.3c-.55.1-1.27.16-2.16.16Zm4.13-15.8v22.26h7.34V8.66h-7.34Zm5.67-1.87c.61-.3 1.08-.71 1.42-1.25.36-.55.53-1.19.53-1.94s-.18-1.34-.53-1.89a3.43 3.43 0 0 0-1.42-1.27c-.59-.3-1.25-.45-1.98-.45s-1.42.15-2.02.45c-.59.3-1.07.72-1.42 1.27-.36.55-.53 1.18-.53 1.89 0 1.1.38 1.97 1.14 2.63.76.65 1.71.98 2.85.98.73 0 1.39-.14 1.98-.42Zm27.51 1.87v22.26h-7.34v-2.28c-.41.43-.85.83-1.34 1.19-1.44 1.07-3.12 1.6-5.05 1.6s-3.61-.52-5.1-1.56c-1.48-1.05-2.63-2.47-3.45-4.25-.82-1.78-1.22-3.73-1.22-5.85s.41-4.07 1.22-5.83c.82-1.78 1.97-3.19 3.45-4.23 1.48-1.05 3.18-1.58 5.1-1.58s3.61.53 5.05 1.6c.48.36.93.75 1.34 1.19V8.66h7.34Zm-7.1 11.11c0-.8-.19-1.53-.56-2.18-.37-.67-.88-1.19-1.54-1.58-.64-.39-1.34-.58-2.09-.58s-1.45.19-2.09.58c-.64.39-1.15.91-1.54 1.58-.37.67-.56 1.39-.56 2.18s.19 1.51.56 2.18c.39.67.9 1.19 1.54 1.58.64.39 1.34.58 2.09.58s1.45-.19 2.09-.58c.65-.39 1.16-.91 1.54-1.56.37-.67.56-1.4.56-2.2Z" })
16672
16700
  }
16673
16701
  );
16674
16702
  };
@@ -16678,7 +16706,7 @@ var computedViewBox = (iconOnly) => {
16678
16706
  }
16679
16707
  return "0 0 144 31.47";
16680
16708
  };
16681
- var WistiaLogoComponent = import_styled_components117.default.svg`
16709
+ var WistiaLogoComponent = import_styled_components118.default.svg`
16682
16710
  height: ${({ height }) => `${height}px`};
16683
16711
 
16684
16712
  /* ensure it will always fit on mobile */
@@ -16694,12 +16722,12 @@ var WistiaLogoComponent = import_styled_components117.default.svg`
16694
16722
  ${({ $opticallyCentered, $iconOnly }) => {
16695
16723
  if ($opticallyCentered) {
16696
16724
  if ($iconOnly) {
16697
- return import_styled_components117.css`
16725
+ return import_styled_components118.css`
16698
16726
  aspect-ratio: 1;
16699
16727
  padding: 11.85% 3.12% 13.91%;
16700
16728
  `;
16701
16729
  }
16702
- return import_styled_components117.css`
16730
+ return import_styled_components118.css`
16703
16731
  aspect-ratio: 127 / 32;
16704
16732
  `;
16705
16733
  }
@@ -16736,7 +16764,7 @@ var WistiaLogo = ({
16736
16764
  };
16737
16765
  const brandmarkColor = VARIANT_COLORS[variant].brandmark;
16738
16766
  const logotypeColor = VARIANT_COLORS[variant].logotype;
16739
- const Logo = /* @__PURE__ */ (0, import_jsx_runtime312.jsxs)(
16767
+ const Logo = /* @__PURE__ */ (0, import_jsx_runtime313.jsxs)(
16740
16768
  WistiaLogoComponent,
16741
16769
  {
16742
16770
  $hoverColor: hoverColor,
@@ -16749,23 +16777,23 @@ var WistiaLogo = ({
16749
16777
  xmlns: "http://www.w3.org/2000/svg",
16750
16778
  ...props,
16751
16779
  children: [
16752
- /* @__PURE__ */ (0, import_jsx_runtime312.jsx)("title", { children: title }),
16753
- (0, import_type_guards69.isNotNil)(description) ? /* @__PURE__ */ (0, import_jsx_runtime312.jsx)("desc", { children: description }) : null,
16780
+ /* @__PURE__ */ (0, import_jsx_runtime313.jsx)("title", { children: title }),
16781
+ (0, import_type_guards69.isNotNil)(description) ? /* @__PURE__ */ (0, import_jsx_runtime313.jsx)("desc", { children: description }) : null,
16754
16782
  renderBrandmark(brandmarkColor, iconOnly),
16755
16783
  renderLogotype(logotypeColor, iconOnly)
16756
16784
  ]
16757
16785
  }
16758
16786
  );
16759
- return href !== void 0 ? /* @__PURE__ */ (0, import_jsx_runtime312.jsx)("a", { href, children: Logo }) : Logo;
16787
+ return href !== void 0 ? /* @__PURE__ */ (0, import_jsx_runtime313.jsx)("a", { href, children: Logo }) : Logo;
16760
16788
  };
16761
16789
  WistiaLogo.displayName = "WistiaLogo_UI";
16762
16790
 
16763
16791
  // src/components/InputPassword/InputPassword.tsx
16764
- var import_styled_components118 = __toESM(require("styled-components"));
16792
+ var import_styled_components119 = __toESM(require("styled-components"));
16765
16793
  var import_react89 = require("react");
16766
16794
  var import_type_guards70 = require("@wistia/type-guards");
16767
- var import_jsx_runtime313 = require("react/jsx-runtime");
16768
- var StyledIconButton = (0, import_styled_components118.default)(IconButton)`
16795
+ var import_jsx_runtime314 = require("react/jsx-runtime");
16796
+ var StyledIconButton = (0, import_styled_components119.default)(IconButton)`
16769
16797
  /* override size for icon button since prop gets changed by Input */
16770
16798
  height: var(--icon-button-size-sm);
16771
16799
  width: var(--icon-button-size-sm);
@@ -16783,13 +16811,13 @@ var InputPassword = (0, import_react89.forwardRef)(
16783
16811
  onVisibilityToggle(newVisibility);
16784
16812
  }
16785
16813
  };
16786
- return /* @__PURE__ */ (0, import_jsx_runtime313.jsx)(
16814
+ return /* @__PURE__ */ (0, import_jsx_runtime314.jsx)(
16787
16815
  Input,
16788
16816
  {
16789
16817
  ...props,
16790
16818
  ref,
16791
16819
  disabled,
16792
- rightIcon: /* @__PURE__ */ (0, import_jsx_runtime313.jsx)(
16820
+ rightIcon: /* @__PURE__ */ (0, import_jsx_runtime314.jsx)(
16793
16821
  StyledIconButton,
16794
16822
  {
16795
16823
  disabled,
@@ -16797,7 +16825,7 @@ var InputPassword = (0, import_react89.forwardRef)(
16797
16825
  onClick: handleClick,
16798
16826
  tabIndex: disabled ? -1 : 0,
16799
16827
  variant: "ghost",
16800
- children: /* @__PURE__ */ (0, import_jsx_runtime313.jsx)(Icon, { type: isVisible ? "preview" : "hide" })
16828
+ children: /* @__PURE__ */ (0, import_jsx_runtime314.jsx)(Icon, { type: isVisible ? "preview" : "hide" })
16801
16829
  }
16802
16830
  ),
16803
16831
  type: isVisible ? "text" : "password"
@@ -16810,7 +16838,7 @@ InputPassword.displayName = "InputPassword_UI";
16810
16838
  // src/components/ContextMenu/ContextMenu.tsx
16811
16839
  var import_react90 = require("react");
16812
16840
  var import_type_guards71 = require("@wistia/type-guards");
16813
- var import_jsx_runtime314 = require("react/jsx-runtime");
16841
+ var import_jsx_runtime315 = require("react/jsx-runtime");
16814
16842
  var ContextMenu = ({
16815
16843
  position,
16816
16844
  triggerRef,
@@ -16835,7 +16863,7 @@ var ContextMenu = ({
16835
16863
  return () => null;
16836
16864
  }, [position, triggerRef]);
16837
16865
  const isOpen = (0, import_type_guards71.isNotNil)(position) || isRightClicked;
16838
- return isOpen ? /* @__PURE__ */ (0, import_jsx_runtime314.jsx)(
16866
+ return isOpen ? /* @__PURE__ */ (0, import_jsx_runtime315.jsx)(
16839
16867
  Menu,
16840
16868
  {
16841
16869
  avoidCollisions: false,
@@ -16846,7 +16874,7 @@ var ContextMenu = ({
16846
16874
  onRequestClose();
16847
16875
  }
16848
16876
  },
16849
- trigger: /* @__PURE__ */ (0, import_jsx_runtime314.jsx)(
16877
+ trigger: /* @__PURE__ */ (0, import_jsx_runtime315.jsx)(
16850
16878
  "button",
16851
16879
  {
16852
16880
  "aria-label": "context menu",
@@ -16901,6 +16929,7 @@ var ContextMenu = ({
16901
16929
  ContextMenu,
16902
16930
  ContrastControls,
16903
16931
  DataCard,
16932
+ DataCardHoverArrow,
16904
16933
  DataCardTrend,
16905
16934
  DataCards,
16906
16935
  Divider,