@wistia/ui 0.15.0 → 0.15.1

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.15.0
3
+ * @license @wistia/ui v0.15.1
4
4
  *
5
5
  * Copyright (c) 2024-2025, Wistia, Inc. and its affiliates.
6
6
  *
@@ -125,6 +125,8 @@ __export(index_exports, {
125
125
  MenuLabel: () => MenuLabel,
126
126
  MenuRadioGroup: () => MenuRadioGroup,
127
127
  Modal: () => Modal,
128
+ ModalCallout: () => ModalCallout,
129
+ ModalCallouts: () => ModalCallouts,
128
130
  PersistentFileAmountLimitValidator: () => import_validators.PersistentFileAmountLimitValidator,
129
131
  Popover: () => Popover,
130
132
  ProgressBar: () => ProgressBar,
@@ -15424,12 +15426,14 @@ var import_jsx_runtime291 = require("react/jsx-runtime");
15424
15426
  var Header = import_styled_components94.default.header`
15425
15427
  display: flex;
15426
15428
  order: 1;
15429
+ padding: 0 var(--wui-space-05);
15430
+ padding-bottom: 0;
15427
15431
  gap: var(--wui-space-01);
15428
15432
  justify-content: ${({ $hideTitle }) => $hideTitle ? "flex-end" : "space-between"}; /* ensure ModalCloseButton is right-aligned */
15429
15433
 
15430
15434
  /* DialogTitle creates an h2 element which inherits some margin */
15431
15435
  h2 {
15432
- margin: 0 0 var(--wui-space-03);
15436
+ margin: 0;
15433
15437
  padding-right: ${({ $hideCloseButon }) => $hideCloseButon ? "0" : "var(--wui-space-03)"};
15434
15438
  }
15435
15439
 
@@ -15591,15 +15595,15 @@ var StyledModalContent = (0, import_styled_components95.default)(import_react_di
15591
15595
  position: fixed;
15592
15596
  display: flex;
15593
15597
  flex-direction: column;
15598
+ gap: var(--wui-space-03);
15594
15599
  top: 0;
15595
15600
  left: 0;
15596
15601
  width: 100vw;
15597
15602
  height: 100vh;
15598
15603
  z-index: var(--wui-zindex-modal);
15599
15604
  box-sizing: border-box;
15600
- padding: var(--wui-space-05);
15605
+ padding: var(--wui-space-05) 0;
15601
15606
  background-color: var(--wui-color-bg-app);
15602
- overflow: auto;
15603
15607
 
15604
15608
  ${mq.smAndUp} {
15605
15609
  position: fixed;
@@ -15672,11 +15676,21 @@ var ModalBody = import_styled_components97.default.div`
15672
15676
  flex-direction: column;
15673
15677
  display: flex;
15674
15678
  flex: 1 0 0;
15679
+ padding: 0 var(--wui-space-05);
15680
+ `;
15681
+ var ModalScrollArea = import_styled_components97.default.div`
15675
15682
  order: 2;
15683
+ max-height: 90vh;
15684
+ overflow-y: auto;
15685
+ `;
15686
+ var ModalFooter = import_styled_components97.default.footer`
15687
+ padding: 0 var(--wui-space-05);
15688
+ order: 3;
15676
15689
  `;
15677
15690
  var Modal = (0, import_react80.forwardRef)(
15678
15691
  ({
15679
15692
  children,
15693
+ footer,
15680
15694
  hideCloseButton = false,
15681
15695
  hideTitle = false,
15682
15696
  initialFocusRef,
@@ -15714,7 +15728,8 @@ var Modal = (0, import_react80.forwardRef)(
15714
15728
  width,
15715
15729
  ...props,
15716
15730
  children: [
15717
- /* @__PURE__ */ (0, import_jsx_runtime293.jsx)(ModalBody, { children }),
15731
+ /* @__PURE__ */ (0, import_jsx_runtime293.jsx)(ModalScrollArea, { children: /* @__PURE__ */ (0, import_jsx_runtime293.jsx)(ModalBody, { children }) }),
15732
+ (0, import_type_guards56.isNotNil)(footer) ? /* @__PURE__ */ (0, import_jsx_runtime293.jsx)(ModalFooter, { children: footer }) : null,
15718
15733
  hideCloseButton && hideTitle ? null : /* @__PURE__ */ (0, import_jsx_runtime293.jsx)(
15719
15734
  ModalHeader,
15720
15735
  {
@@ -15733,6 +15748,28 @@ var Modal = (0, import_react80.forwardRef)(
15733
15748
  );
15734
15749
  Modal.displayName = "Modal_UI";
15735
15750
 
15751
+ // src/components/Modal/ModalCallouts.tsx
15752
+ var import_jsx_runtime294 = require("react/jsx-runtime");
15753
+ var ModalCallouts = ({ children }) => {
15754
+ return /* @__PURE__ */ (0, import_jsx_runtime294.jsx)(
15755
+ Stack,
15756
+ {
15757
+ direction: "horizontal",
15758
+ gap: "space-08",
15759
+ children
15760
+ }
15761
+ );
15762
+ };
15763
+ ModalCallouts.displayName = "ModalCallouts_UI";
15764
+ var ModalCallout = ({ title, image, children }) => {
15765
+ return /* @__PURE__ */ (0, import_jsx_runtime294.jsxs)(Stack, { direction: "vertical", children: [
15766
+ image,
15767
+ /* @__PURE__ */ (0, import_jsx_runtime294.jsx)(Heading, { variant: "heading4", children: title }),
15768
+ children
15769
+ ] });
15770
+ };
15771
+ ModalCallout.displayName = "ModalCallout_UI";
15772
+
15736
15773
  // src/components/Popover/Popover.tsx
15737
15774
  var import_react_popover5 = require("@radix-ui/react-popover");
15738
15775
  var import_styled_components99 = __toESM(require("styled-components"));
@@ -15746,7 +15783,7 @@ var getControlProps = (isOpen, onOpenChange) => {
15746
15783
  // src/components/Popover/PopoverArrow.tsx
15747
15784
  var import_react_popover4 = require("@radix-ui/react-popover");
15748
15785
  var import_styled_components98 = __toESM(require("styled-components"));
15749
- var import_jsx_runtime294 = require("react/jsx-runtime");
15786
+ var import_jsx_runtime295 = require("react/jsx-runtime");
15750
15787
  var StyledPath = import_styled_components98.default.path`
15751
15788
  fill: var(--wui-color-border-secondary);
15752
15789
  `;
@@ -15785,7 +15822,7 @@ var StyledCircle = import_styled_components98.default.circle`
15785
15822
  }
15786
15823
  `;
15787
15824
  var PopoverArrow = ({ isAnimated }) => {
15788
- return /* @__PURE__ */ (0, import_jsx_runtime294.jsx)(import_react_popover4.PopoverArrow, { asChild: true, children: /* @__PURE__ */ (0, import_jsx_runtime294.jsxs)(
15825
+ return /* @__PURE__ */ (0, import_jsx_runtime295.jsx)(import_react_popover4.PopoverArrow, { asChild: true, children: /* @__PURE__ */ (0, import_jsx_runtime295.jsxs)(
15789
15826
  "svg",
15790
15827
  {
15791
15828
  fill: "none",
@@ -15794,8 +15831,8 @@ var PopoverArrow = ({ isAnimated }) => {
15794
15831
  width: "48",
15795
15832
  xmlns: "http://www.w3.org/2000/svg",
15796
15833
  children: [
15797
- /* @__PURE__ */ (0, import_jsx_runtime294.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" }),
15798
- /* @__PURE__ */ (0, import_jsx_runtime294.jsx)(
15834
+ /* @__PURE__ */ (0, import_jsx_runtime295.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" }),
15835
+ /* @__PURE__ */ (0, import_jsx_runtime295.jsx)(
15799
15836
  StyledCircle,
15800
15837
  {
15801
15838
  $isAnimated: isAnimated,
@@ -15806,7 +15843,7 @@ var PopoverArrow = ({ isAnimated }) => {
15806
15843
  strokeWidth: "4"
15807
15844
  }
15808
15845
  ),
15809
- /* @__PURE__ */ (0, import_jsx_runtime294.jsx)(
15846
+ /* @__PURE__ */ (0, import_jsx_runtime295.jsx)(
15810
15847
  StyledCircle,
15811
15848
  {
15812
15849
  $isAnimated: isAnimated,
@@ -15824,7 +15861,7 @@ var PopoverArrow = ({ isAnimated }) => {
15824
15861
  PopoverArrow.displayName = "PopoverArrow_UI";
15825
15862
 
15826
15863
  // src/components/Popover/Popover.tsx
15827
- var import_jsx_runtime295 = require("react/jsx-runtime");
15864
+ var import_jsx_runtime296 = require("react/jsx-runtime");
15828
15865
  var StyledContent2 = (0, import_styled_components99.default)(import_react_popover5.Content)`
15829
15866
  z-index: var(--wui-zindex-popover);
15830
15867
  ${({ $colorScheme }) => getColorScheme($colorScheme)};
@@ -15864,9 +15901,9 @@ var Popover = ({
15864
15901
  "--wui-popover-max-width": maxWidth,
15865
15902
  "--wui-popover-max-height": maxHeight
15866
15903
  };
15867
- return /* @__PURE__ */ (0, import_jsx_runtime295.jsxs)(import_react_popover5.Root, { ...getControlProps(isOpen, onOpenChange), children: [
15868
- /* @__PURE__ */ (0, import_jsx_runtime295.jsx)(import_react_popover5.Trigger, { asChild: true, children: trigger }),
15869
- /* @__PURE__ */ (0, import_jsx_runtime295.jsx)(import_react_popover5.Portal, { children: /* @__PURE__ */ (0, import_jsx_runtime295.jsxs)(
15904
+ return /* @__PURE__ */ (0, import_jsx_runtime296.jsxs)(import_react_popover5.Root, { ...getControlProps(isOpen, onOpenChange), children: [
15905
+ /* @__PURE__ */ (0, import_jsx_runtime296.jsx)(import_react_popover5.Trigger, { asChild: true, children: trigger }),
15906
+ /* @__PURE__ */ (0, import_jsx_runtime296.jsx)(import_react_popover5.Portal, { children: /* @__PURE__ */ (0, import_jsx_runtime296.jsxs)(
15870
15907
  StyledContent2,
15871
15908
  {
15872
15909
  $colorScheme: colorScheme,
@@ -15875,17 +15912,17 @@ var Popover = ({
15875
15912
  $unstyled: unstyled,
15876
15913
  style,
15877
15914
  children: [
15878
- !hideCloseButton && /* @__PURE__ */ (0, import_jsx_runtime295.jsx)(import_react_popover5.Close, { asChild: true, children: /* @__PURE__ */ (0, import_jsx_runtime295.jsx)(
15915
+ !hideCloseButton && /* @__PURE__ */ (0, import_jsx_runtime296.jsx)(import_react_popover5.Close, { asChild: true, children: /* @__PURE__ */ (0, import_jsx_runtime296.jsx)(
15879
15916
  IconButton,
15880
15917
  {
15881
15918
  "data-wui-popover-close": true,
15882
15919
  label: "Close",
15883
15920
  variant: "ghost",
15884
- children: /* @__PURE__ */ (0, import_jsx_runtime295.jsx)(Icon, { type: "close" })
15921
+ children: /* @__PURE__ */ (0, import_jsx_runtime296.jsx)(Icon, { type: "close" })
15885
15922
  }
15886
15923
  ) }),
15887
- withArrow ? /* @__PURE__ */ (0, import_jsx_runtime295.jsx)(PopoverArrow, { isAnimated }) : null,
15888
- /* @__PURE__ */ (0, import_jsx_runtime295.jsx)("div", { children })
15924
+ withArrow ? /* @__PURE__ */ (0, import_jsx_runtime296.jsx)(PopoverArrow, { isAnimated }) : null,
15925
+ /* @__PURE__ */ (0, import_jsx_runtime296.jsx)("div", { children })
15889
15926
  ]
15890
15927
  }
15891
15928
  ) })
@@ -15897,7 +15934,7 @@ Popover.displayName = "Popover_UI";
15897
15934
  var import_styled_components100 = __toESM(require("styled-components"));
15898
15935
  var import_react_progress = require("@radix-ui/react-progress");
15899
15936
  var import_type_guards58 = require("@wistia/type-guards");
15900
- var import_jsx_runtime296 = require("react/jsx-runtime");
15937
+ var import_jsx_runtime297 = require("react/jsx-runtime");
15901
15938
  var ProgressBarWrapper = import_styled_components100.default.div`
15902
15939
  --progress-bar-height: 8px;
15903
15940
 
@@ -15951,16 +15988,16 @@ var ProgressBar = ({
15951
15988
  colorScheme = "inherit",
15952
15989
  ...props
15953
15990
  }) => {
15954
- return /* @__PURE__ */ (0, import_jsx_runtime296.jsxs)(ProgressBarWrapper, { children: [
15955
- (0, import_type_guards58.isNotNil)(labelLeft) ? /* @__PURE__ */ (0, import_jsx_runtime296.jsx)(ProgressBarLabel, { children: labelLeft }) : null,
15956
- /* @__PURE__ */ (0, import_jsx_runtime296.jsx)(
15991
+ return /* @__PURE__ */ (0, import_jsx_runtime297.jsxs)(ProgressBarWrapper, { children: [
15992
+ (0, import_type_guards58.isNotNil)(labelLeft) ? /* @__PURE__ */ (0, import_jsx_runtime297.jsx)(ProgressBarLabel, { children: labelLeft }) : null,
15993
+ /* @__PURE__ */ (0, import_jsx_runtime297.jsx)(
15957
15994
  StyledProgressBar,
15958
15995
  {
15959
15996
  $colorScheme: colorScheme,
15960
15997
  max,
15961
15998
  value: progress,
15962
15999
  ...props,
15963
- children: /* @__PURE__ */ (0, import_jsx_runtime296.jsx)(
16000
+ children: /* @__PURE__ */ (0, import_jsx_runtime297.jsx)(
15964
16001
  StyledProgressIndicator,
15965
16002
  {
15966
16003
  $colorScheme: colorScheme,
@@ -15970,7 +16007,7 @@ var ProgressBar = ({
15970
16007
  )
15971
16008
  }
15972
16009
  ),
15973
- (0, import_type_guards58.isNotNil)(labelRight) ? /* @__PURE__ */ (0, import_jsx_runtime296.jsx)(ProgressBarLabel, { children: labelRight }) : null
16010
+ (0, import_type_guards58.isNotNil)(labelRight) ? /* @__PURE__ */ (0, import_jsx_runtime297.jsx)(ProgressBarLabel, { children: labelRight }) : null
15974
16011
  ] });
15975
16012
  };
15976
16013
  ProgressBar.displayName = "ProgressBar_UI";
@@ -15979,7 +16016,7 @@ ProgressBar.displayName = "ProgressBar_UI";
15979
16016
  var import_type_guards59 = require("@wistia/type-guards");
15980
16017
  var import_react81 = require("react");
15981
16018
  var import_styled_components101 = __toESM(require("styled-components"));
15982
- var import_jsx_runtime297 = require("react/jsx-runtime");
16019
+ var import_jsx_runtime298 = require("react/jsx-runtime");
15983
16020
  var sizeSmall2 = import_styled_components101.css`
15984
16021
  --wui-radio-size: 14px;
15985
16022
  --wui-radio-icon-size: 7px;
@@ -16084,14 +16121,14 @@ var Radio = (0, import_react81.forwardRef)(
16084
16121
  const radioName = name ?? contextName;
16085
16122
  const handleOnChange = onChange ?? contextOnChange;
16086
16123
  const isChecked = (0, import_type_guards59.isNotUndefined)(value) && (0, import_type_guards59.isNotUndefined)(contextValue) ? contextValue === value : checked;
16087
- return /* @__PURE__ */ (0, import_jsx_runtime297.jsxs)(
16124
+ return /* @__PURE__ */ (0, import_jsx_runtime298.jsxs)(
16088
16125
  StyledRadioWrapper,
16089
16126
  {
16090
16127
  $disabled: disabled,
16091
16128
  $hideLabel: hideLabel,
16092
16129
  "aria-invalid": props["aria-invalid"],
16093
16130
  children: [
16094
- /* @__PURE__ */ (0, import_jsx_runtime297.jsx)(
16131
+ /* @__PURE__ */ (0, import_jsx_runtime298.jsx)(
16095
16132
  StyledHiddenRadioInput,
16096
16133
  {
16097
16134
  ...props,
@@ -16106,10 +16143,10 @@ var Radio = (0, import_react81.forwardRef)(
16106
16143
  value
16107
16144
  }
16108
16145
  ),
16109
- /* @__PURE__ */ (0, import_jsx_runtime297.jsx)(
16146
+ /* @__PURE__ */ (0, import_jsx_runtime298.jsx)(
16110
16147
  FormControlLabel,
16111
16148
  {
16112
- controlSlot: /* @__PURE__ */ (0, import_jsx_runtime297.jsx)(StyledRadioInput, { $size: size }),
16149
+ controlSlot: /* @__PURE__ */ (0, import_jsx_runtime298.jsx)(StyledRadioInput, { $size: size }),
16113
16150
  description,
16114
16151
  disabled,
16115
16152
  hideLabel,
@@ -16131,7 +16168,7 @@ var import_react83 = require("react");
16131
16168
  var import_react82 = require("react");
16132
16169
  var import_styled_components102 = __toESM(require("styled-components"));
16133
16170
  var import_type_guards60 = require("@wistia/type-guards");
16134
- var import_jsx_runtime298 = require("react/jsx-runtime");
16171
+ var import_jsx_runtime299 = require("react/jsx-runtime");
16135
16172
  var checkedStyles = import_styled_components102.css`
16136
16173
  --wui-radio-card-border-color: var(--wui-color-focus-ring);
16137
16174
  --wui-color-icon: var(--wui-color-icon-selected);
@@ -16260,14 +16297,14 @@ var RadioCardRoot = (0, import_react82.forwardRef)(
16260
16297
  const radioName = name ?? contextName;
16261
16298
  const handleOnChange = onChange ?? contextOnChange;
16262
16299
  const isChecked = (0, import_type_guards60.isNotUndefined)(value) && (0, import_type_guards60.isNotUndefined)(contextValue) ? contextValue === value : checked;
16263
- return /* @__PURE__ */ (0, import_jsx_runtime298.jsxs)(
16300
+ return /* @__PURE__ */ (0, import_jsx_runtime299.jsxs)(
16264
16301
  StyledCard2,
16265
16302
  {
16266
16303
  $aspectRatio: aspectRatio,
16267
16304
  $padding: padding,
16268
16305
  htmlFor: computedId,
16269
16306
  children: [
16270
- /* @__PURE__ */ (0, import_jsx_runtime298.jsx)(
16307
+ /* @__PURE__ */ (0, import_jsx_runtime299.jsx)(
16271
16308
  StyledHiddenInput,
16272
16309
  {
16273
16310
  ...props,
@@ -16344,7 +16381,7 @@ var RadioCardIndicator = import_styled_components103.default.div`
16344
16381
  RadioCardIndicator.displayName = "RadioCardIndicator_UI";
16345
16382
 
16346
16383
  // src/components/RadioCard/RadioCardDefaultLayout.tsx
16347
- var import_jsx_runtime299 = require("react/jsx-runtime");
16384
+ var import_jsx_runtime300 = require("react/jsx-runtime");
16348
16385
  var StyledCardContent = import_styled_components104.default.div`
16349
16386
  display: grid;
16350
16387
  grid-auto-flow: column;
@@ -16364,18 +16401,18 @@ var RadioCardDefaultLayout = ({
16364
16401
  description,
16365
16402
  showIndicator = true
16366
16403
  }) => {
16367
- return /* @__PURE__ */ (0, import_jsx_runtime299.jsxs)(StyledCardContent, { children: [
16368
- showIndicator ? /* @__PURE__ */ (0, import_jsx_runtime299.jsx)(StyledIndicatorContainer, { $hasIcon: (0, import_type_guards61.isNotNil)(icon), children: /* @__PURE__ */ (0, import_jsx_runtime299.jsx)(RadioCardIndicator, { "data-testid": "wui-radio-card-indicator" }) }) : null,
16369
- /* @__PURE__ */ (0, import_jsx_runtime299.jsxs)(Stack, { gap: "space-02", children: [
16370
- (0, import_type_guards61.isNotNil)(icon) && /* @__PURE__ */ (0, import_jsx_runtime299.jsx)(StyledCardIcon, { "data-wui-radio-card-icon": true, children: icon }),
16371
- /* @__PURE__ */ (0, import_jsx_runtime299.jsxs)(
16404
+ return /* @__PURE__ */ (0, import_jsx_runtime300.jsxs)(StyledCardContent, { children: [
16405
+ showIndicator ? /* @__PURE__ */ (0, import_jsx_runtime300.jsx)(StyledIndicatorContainer, { $hasIcon: (0, import_type_guards61.isNotNil)(icon), children: /* @__PURE__ */ (0, import_jsx_runtime300.jsx)(RadioCardIndicator, { "data-testid": "wui-radio-card-indicator" }) }) : null,
16406
+ /* @__PURE__ */ (0, import_jsx_runtime300.jsxs)(Stack, { gap: "space-02", children: [
16407
+ (0, import_type_guards61.isNotNil)(icon) && /* @__PURE__ */ (0, import_jsx_runtime300.jsx)(StyledCardIcon, { "data-wui-radio-card-icon": true, children: icon }),
16408
+ /* @__PURE__ */ (0, import_jsx_runtime300.jsxs)(
16372
16409
  Stack,
16373
16410
  {
16374
16411
  gap: "space-01",
16375
16412
  style: (0, import_type_guards61.isNotNil)(icon) ? { paddingLeft: 2 } : void 0,
16376
16413
  children: [
16377
- (0, import_type_guards61.isNotNil)(label) && /* @__PURE__ */ (0, import_jsx_runtime299.jsx)(Text, { variant: "label3", children: /* @__PURE__ */ (0, import_jsx_runtime299.jsx)("strong", { children: label }) }),
16378
- (0, import_type_guards61.isNotNil)(description) && /* @__PURE__ */ (0, import_jsx_runtime299.jsx)(
16414
+ (0, import_type_guards61.isNotNil)(label) && /* @__PURE__ */ (0, import_jsx_runtime300.jsx)(Text, { variant: "label3", children: /* @__PURE__ */ (0, import_jsx_runtime300.jsx)("strong", { children: label }) }),
16415
+ (0, import_type_guards61.isNotNil)(description) && /* @__PURE__ */ (0, import_jsx_runtime300.jsx)(
16379
16416
  Text,
16380
16417
  {
16381
16418
  prominence: "secondary",
@@ -16398,16 +16435,16 @@ var RadioCardChildrenContainer = import_styled_components105.default.div`
16398
16435
  `;
16399
16436
 
16400
16437
  // src/components/RadioCard/RadioCard.tsx
16401
- var import_jsx_runtime300 = require("react/jsx-runtime");
16438
+ var import_jsx_runtime301 = require("react/jsx-runtime");
16402
16439
  var RadioCard = (0, import_react83.forwardRef)(
16403
16440
  ({ icon, label, description, showIndicator, children, ...rootProps }, ref) => {
16404
- return /* @__PURE__ */ (0, import_jsx_runtime300.jsx)(
16441
+ return /* @__PURE__ */ (0, import_jsx_runtime301.jsx)(
16405
16442
  RadioCardRoot,
16406
16443
  {
16407
16444
  ref,
16408
16445
  padding: children != null ? "space-00" : "space-04",
16409
16446
  ...rootProps,
16410
- children: children != null ? /* @__PURE__ */ (0, import_jsx_runtime300.jsx)(RadioCardChildrenContainer, { "data-wui-radio-card-image": "cover", children }) : /* @__PURE__ */ (0, import_jsx_runtime300.jsx)(
16447
+ children: children != null ? /* @__PURE__ */ (0, import_jsx_runtime301.jsx)(RadioCardChildrenContainer, { "data-wui-radio-card-image": "cover", children }) : /* @__PURE__ */ (0, import_jsx_runtime301.jsx)(
16411
16448
  RadioCardDefaultLayout,
16412
16449
  {
16413
16450
  description,
@@ -16424,17 +16461,17 @@ RadioCard.displayName = "RadioCard_UI";
16424
16461
 
16425
16462
  // src/components/RadioCard/RadioCardImage.tsx
16426
16463
  var import_react84 = require("react");
16427
- var import_jsx_runtime301 = require("react/jsx-runtime");
16464
+ var import_jsx_runtime302 = require("react/jsx-runtime");
16428
16465
  var RadioCardImage = (0, import_react84.forwardRef)(
16429
16466
  ({ label, imageSrc, aspectRatio, padding = "space-04", ...rootProps }, ref) => {
16430
- return /* @__PURE__ */ (0, import_jsx_runtime301.jsx)(
16467
+ return /* @__PURE__ */ (0, import_jsx_runtime302.jsx)(
16431
16468
  RadioCardRoot,
16432
16469
  {
16433
16470
  ref,
16434
16471
  ...rootProps,
16435
16472
  aspectRatio,
16436
16473
  padding,
16437
- children: /* @__PURE__ */ (0, import_jsx_runtime301.jsx)(
16474
+ children: /* @__PURE__ */ (0, import_jsx_runtime302.jsx)(
16438
16475
  Image,
16439
16476
  {
16440
16477
  alt: label,
@@ -16454,7 +16491,7 @@ RadioCardImage.displayName = "RadioCardImage_UI";
16454
16491
  var import_react85 = require("react");
16455
16492
  var import_styled_components106 = __toESM(require("styled-components"));
16456
16493
  var import_throttle_debounce2 = require("throttle-debounce");
16457
- var import_jsx_runtime302 = require("react/jsx-runtime");
16494
+ var import_jsx_runtime303 = require("react/jsx-runtime");
16458
16495
  var SHADOW_SIZE_PX = 8;
16459
16496
  var Container10 = import_styled_components106.default.div`
16460
16497
  overflow: hidden;
@@ -16534,12 +16571,12 @@ var ScrollArea = (0, import_react85.forwardRef)(
16534
16571
  (0, import_react85.useEffect)(() => {
16535
16572
  updateShadows();
16536
16573
  }, [updateShadows]);
16537
- return /* @__PURE__ */ (0, import_jsx_runtime302.jsxs)(Container10, { style, children: [
16538
- /* @__PURE__ */ (0, import_jsx_runtime302.jsx)(ShadowAtTop, { $isVisible: shadowState.canScrollUp }),
16539
- /* @__PURE__ */ (0, import_jsx_runtime302.jsx)(ShadowAtBottom, { $isVisible: shadowState.canScrollDown }),
16540
- /* @__PURE__ */ (0, import_jsx_runtime302.jsx)(ShadowAtLeft, { $isVisible: shadowState.canScrollLeft }),
16541
- /* @__PURE__ */ (0, import_jsx_runtime302.jsx)(ShadowAtRight, { $isVisible: shadowState.canScrollRight }),
16542
- /* @__PURE__ */ (0, import_jsx_runtime302.jsx)(
16574
+ return /* @__PURE__ */ (0, import_jsx_runtime303.jsxs)(Container10, { style, children: [
16575
+ /* @__PURE__ */ (0, import_jsx_runtime303.jsx)(ShadowAtTop, { $isVisible: shadowState.canScrollUp }),
16576
+ /* @__PURE__ */ (0, import_jsx_runtime303.jsx)(ShadowAtBottom, { $isVisible: shadowState.canScrollDown }),
16577
+ /* @__PURE__ */ (0, import_jsx_runtime303.jsx)(ShadowAtLeft, { $isVisible: shadowState.canScrollLeft }),
16578
+ /* @__PURE__ */ (0, import_jsx_runtime303.jsx)(ShadowAtRight, { $isVisible: shadowState.canScrollRight }),
16579
+ /* @__PURE__ */ (0, import_jsx_runtime303.jsx)(
16543
16580
  ScrollContainer,
16544
16581
  {
16545
16582
  ref: scrollContainerRef,
@@ -16561,7 +16598,7 @@ var import_type_guards63 = require("@wistia/type-guards");
16561
16598
 
16562
16599
  // src/components/SegmentedControl/useSelectedItemStyle.tsx
16563
16600
  var import_react86 = require("react");
16564
- var import_jsx_runtime303 = require("react/jsx-runtime");
16601
+ var import_jsx_runtime304 = require("react/jsx-runtime");
16565
16602
  var SelectedItemStyleContext = (0, import_react86.createContext)(null);
16566
16603
  var SelectedItemStyleProvider = ({
16567
16604
  children
@@ -16582,7 +16619,7 @@ var SelectedItemStyleProvider = ({
16582
16619
  }),
16583
16620
  [selectedItemIndicatorStyle]
16584
16621
  );
16585
- return /* @__PURE__ */ (0, import_jsx_runtime303.jsx)(SelectedItemStyleContext.Provider, { value: contextValue, children });
16622
+ return /* @__PURE__ */ (0, import_jsx_runtime304.jsx)(SelectedItemStyleContext.Provider, { value: contextValue, children });
16586
16623
  };
16587
16624
  var useSelectedItemStyle = () => {
16588
16625
  const context = (0, import_react86.useContext)(SelectedItemStyleContext);
@@ -16609,7 +16646,7 @@ var useSegmentedControlValue = () => {
16609
16646
  };
16610
16647
 
16611
16648
  // src/components/SegmentedControl/SelectedItemIndicator.tsx
16612
- var import_jsx_runtime304 = require("react/jsx-runtime");
16649
+ var import_jsx_runtime305 = require("react/jsx-runtime");
16613
16650
  var selectedItemIndicatorStyles = import_styled_components107.css`
16614
16651
  background-color: var(--wui-color-bg-fill-white);
16615
16652
  border-radius: var(--wui-border-radius-rounded);
@@ -16631,7 +16668,7 @@ var SelectedItemIndicator = () => {
16631
16668
  if (!selectedValue || (0, import_type_guards62.isUndefined)(selectedItemIndicatorStyle)) {
16632
16669
  return null;
16633
16670
  }
16634
- return /* @__PURE__ */ (0, import_jsx_runtime304.jsx)(
16671
+ return /* @__PURE__ */ (0, import_jsx_runtime305.jsx)(
16635
16672
  SelectedItemIndicatorDiv,
16636
16673
  {
16637
16674
  "data-wui-selected-item-indicator": true,
@@ -16641,7 +16678,7 @@ var SelectedItemIndicator = () => {
16641
16678
  };
16642
16679
 
16643
16680
  // src/components/SegmentedControl/SegmentedControl.tsx
16644
- var import_jsx_runtime305 = require("react/jsx-runtime");
16681
+ var import_jsx_runtime306 = require("react/jsx-runtime");
16645
16682
  var segmentedControlStyles = import_styled_components108.css`
16646
16683
  display: inline-flex;
16647
16684
  background-color: var(--wui-color-bg-surface-secondary);
@@ -16668,7 +16705,7 @@ var SegmentedControl = (0, import_react88.forwardRef)(
16668
16705
  if ((0, import_type_guards63.isNil)(children)) {
16669
16706
  return null;
16670
16707
  }
16671
- return /* @__PURE__ */ (0, import_jsx_runtime305.jsx)(
16708
+ return /* @__PURE__ */ (0, import_jsx_runtime306.jsx)(
16672
16709
  StyledSegmentedControl,
16673
16710
  {
16674
16711
  ref,
@@ -16680,9 +16717,9 @@ var SegmentedControl = (0, import_react88.forwardRef)(
16680
16717
  type: "single",
16681
16718
  value: selectedValue,
16682
16719
  ...props,
16683
- children: /* @__PURE__ */ (0, import_jsx_runtime305.jsx)(SegmentedControlValueProvider, { value: selectedValue, children: /* @__PURE__ */ (0, import_jsx_runtime305.jsxs)(SelectedItemStyleProvider, { children: [
16720
+ children: /* @__PURE__ */ (0, import_jsx_runtime306.jsx)(SegmentedControlValueProvider, { value: selectedValue, children: /* @__PURE__ */ (0, import_jsx_runtime306.jsxs)(SelectedItemStyleProvider, { children: [
16684
16721
  children,
16685
- /* @__PURE__ */ (0, import_jsx_runtime305.jsx)(SelectedItemIndicator, {})
16722
+ /* @__PURE__ */ (0, import_jsx_runtime306.jsx)(SelectedItemIndicator, {})
16686
16723
  ] }) })
16687
16724
  }
16688
16725
  );
@@ -16695,7 +16732,7 @@ var import_react89 = require("react");
16695
16732
  var import_styled_components109 = __toESM(require("styled-components"));
16696
16733
  var import_react_toggle_group4 = require("@radix-ui/react-toggle-group");
16697
16734
  var import_type_guards64 = require("@wistia/type-guards");
16698
- var import_jsx_runtime306 = require("react/jsx-runtime");
16735
+ var import_jsx_runtime307 = require("react/jsx-runtime");
16699
16736
  var segmentedControlItemStyles = import_styled_components109.css`
16700
16737
  all: unset; /* ToggleGroupItem is a button element */
16701
16738
  align-items: center;
@@ -16805,7 +16842,7 @@ var SegmentedControlItem = (0, import_react89.forwardRef)(
16805
16842
  resizeObserver.disconnect();
16806
16843
  };
16807
16844
  }, [selectedValue, setSelectedItemMeasurements, value]);
16808
- return /* @__PURE__ */ (0, import_jsx_runtime306.jsxs)(
16845
+ return /* @__PURE__ */ (0, import_jsx_runtime307.jsxs)(
16809
16846
  StyledSegmentedControlItem,
16810
16847
  {
16811
16848
  ref: combinedRef,
@@ -16829,7 +16866,7 @@ SegmentedControlItem.displayName = "SegmentedControlItem_UI";
16829
16866
  var import_react_select = require("@radix-ui/react-select");
16830
16867
  var import_react90 = require("react");
16831
16868
  var import_styled_components110 = __toESM(require("styled-components"));
16832
- var import_jsx_runtime307 = require("react/jsx-runtime");
16869
+ var import_jsx_runtime308 = require("react/jsx-runtime");
16833
16870
  var StyledTrigger2 = (0, import_styled_components110.default)(import_react_select.Trigger)`
16834
16871
  ${({ $colorScheme }) => getColorScheme($colorScheme)};
16835
16872
  ${inputCss};
@@ -16918,8 +16955,8 @@ var Select = (0, import_react90.forwardRef)(
16918
16955
  if (forceOpen) {
16919
16956
  rootProps["open"] = true;
16920
16957
  }
16921
- return /* @__PURE__ */ (0, import_jsx_runtime307.jsxs)(import_react_select.Root, { ...rootProps, children: [
16922
- /* @__PURE__ */ (0, import_jsx_runtime307.jsxs)(
16958
+ return /* @__PURE__ */ (0, import_jsx_runtime308.jsxs)(import_react_select.Root, { ...rootProps, children: [
16959
+ /* @__PURE__ */ (0, import_jsx_runtime308.jsxs)(
16923
16960
  StyledTrigger2,
16924
16961
  {
16925
16962
  ref: forwardedRef,
@@ -16927,8 +16964,8 @@ var Select = (0, import_react90.forwardRef)(
16927
16964
  $fullWidth: responsiveFullWidth,
16928
16965
  ...props,
16929
16966
  children: [
16930
- /* @__PURE__ */ (0, import_jsx_runtime307.jsx)(import_react_select.Value, { placeholder }),
16931
- /* @__PURE__ */ (0, import_jsx_runtime307.jsx)(
16967
+ /* @__PURE__ */ (0, import_jsx_runtime308.jsx)(import_react_select.Value, { placeholder }),
16968
+ /* @__PURE__ */ (0, import_jsx_runtime308.jsx)(
16932
16969
  Icon,
16933
16970
  {
16934
16971
  size: "md",
@@ -16938,10 +16975,10 @@ var Select = (0, import_react90.forwardRef)(
16938
16975
  ]
16939
16976
  }
16940
16977
  ),
16941
- /* @__PURE__ */ (0, import_jsx_runtime307.jsx)(import_react_select.Portal, { children: /* @__PURE__ */ (0, import_jsx_runtime307.jsxs)(StyledContent3, { position: "popper", children: [
16942
- /* @__PURE__ */ (0, import_jsx_runtime307.jsx)(import_react_select.ScrollUpButton, { children: /* @__PURE__ */ (0, import_jsx_runtime307.jsx)(Icon, { type: "caret-up" }) }),
16943
- /* @__PURE__ */ (0, import_jsx_runtime307.jsx)(import_react_select.Viewport, { children }),
16944
- /* @__PURE__ */ (0, import_jsx_runtime307.jsx)(import_react_select.ScrollDownButton, { children: /* @__PURE__ */ (0, import_jsx_runtime307.jsx)(Icon, { type: "caret-down" }) })
16978
+ /* @__PURE__ */ (0, import_jsx_runtime308.jsx)(import_react_select.Portal, { children: /* @__PURE__ */ (0, import_jsx_runtime308.jsxs)(StyledContent3, { position: "popper", children: [
16979
+ /* @__PURE__ */ (0, import_jsx_runtime308.jsx)(import_react_select.ScrollUpButton, { children: /* @__PURE__ */ (0, import_jsx_runtime308.jsx)(Icon, { type: "caret-up" }) }),
16980
+ /* @__PURE__ */ (0, import_jsx_runtime308.jsx)(import_react_select.Viewport, { children }),
16981
+ /* @__PURE__ */ (0, import_jsx_runtime308.jsx)(import_react_select.ScrollDownButton, { children: /* @__PURE__ */ (0, import_jsx_runtime308.jsx)(Icon, { type: "caret-down" }) })
16945
16982
  ] }) })
16946
16983
  ] });
16947
16984
  }
@@ -16953,7 +16990,7 @@ var import_react_select2 = require("@radix-ui/react-select");
16953
16990
  var import_react91 = require("react");
16954
16991
  var import_styled_components111 = __toESM(require("styled-components"));
16955
16992
  var import_type_guards65 = require("@wistia/type-guards");
16956
- var import_jsx_runtime308 = require("react/jsx-runtime");
16993
+ var import_jsx_runtime309 = require("react/jsx-runtime");
16957
16994
  var StyledItem = (0, import_styled_components111.default)(import_react_select2.Item)`
16958
16995
  ${getTypographicStyles("label3")}
16959
16996
  display: flex;
@@ -16980,17 +17017,17 @@ var StyledItem = (0, import_styled_components111.default)(import_react_select2.I
16980
17017
  `;
16981
17018
  var SelectOption = (0, import_react91.forwardRef)(
16982
17019
  ({ children, selectedDisplayValue, ...props }, forwardedRef) => {
16983
- return /* @__PURE__ */ (0, import_jsx_runtime308.jsxs)(
17020
+ return /* @__PURE__ */ (0, import_jsx_runtime309.jsxs)(
16984
17021
  StyledItem,
16985
17022
  {
16986
17023
  ...props,
16987
17024
  ref: forwardedRef,
16988
17025
  children: [
16989
- (0, import_type_guards65.isNotNil)(selectedDisplayValue) ? /* @__PURE__ */ (0, import_jsx_runtime308.jsxs)("div", { children: [
17026
+ (0, import_type_guards65.isNotNil)(selectedDisplayValue) ? /* @__PURE__ */ (0, import_jsx_runtime309.jsxs)("div", { children: [
16990
17027
  children,
16991
- /* @__PURE__ */ (0, import_jsx_runtime308.jsx)("div", { style: { display: "none" }, children: /* @__PURE__ */ (0, import_jsx_runtime308.jsx)(import_react_select2.ItemText, { children: selectedDisplayValue }) })
16992
- ] }) : /* @__PURE__ */ (0, import_jsx_runtime308.jsx)(import_react_select2.ItemText, { children }),
16993
- /* @__PURE__ */ (0, import_jsx_runtime308.jsx)(import_react_select2.ItemIndicator, { children: /* @__PURE__ */ (0, import_jsx_runtime308.jsx)(
17028
+ /* @__PURE__ */ (0, import_jsx_runtime309.jsx)("div", { style: { display: "none" }, children: /* @__PURE__ */ (0, import_jsx_runtime309.jsx)(import_react_select2.ItemText, { children: selectedDisplayValue }) })
17029
+ ] }) : /* @__PURE__ */ (0, import_jsx_runtime309.jsx)(import_react_select2.ItemText, { children }),
17030
+ /* @__PURE__ */ (0, import_jsx_runtime309.jsx)(import_react_select2.ItemIndicator, { children: /* @__PURE__ */ (0, import_jsx_runtime309.jsx)(
16994
17031
  Icon,
16995
17032
  {
16996
17033
  size: "md",
@@ -17007,13 +17044,13 @@ SelectOption.displayName = "SelectOption_UI";
17007
17044
  // src/components/Select/SelectOptionGroup.tsx
17008
17045
  var import_react_select3 = require("@radix-ui/react-select");
17009
17046
  var import_styled_components112 = __toESM(require("styled-components"));
17010
- var import_jsx_runtime309 = require("react/jsx-runtime");
17047
+ var import_jsx_runtime310 = require("react/jsx-runtime");
17011
17048
  var StyledLabel4 = (0, import_styled_components112.default)(import_react_select3.Label)`
17012
17049
  padding: var(--wui-select-option-padding);
17013
17050
  `;
17014
17051
  var SelectOptionGroup = ({ children, label, ...props }) => {
17015
- return /* @__PURE__ */ (0, import_jsx_runtime309.jsxs)(import_react_select3.Group, { ...props, children: [
17016
- /* @__PURE__ */ (0, import_jsx_runtime309.jsx)(StyledLabel4, { children: /* @__PURE__ */ (0, import_jsx_runtime309.jsx)(
17052
+ return /* @__PURE__ */ (0, import_jsx_runtime310.jsxs)(import_react_select3.Group, { ...props, children: [
17053
+ /* @__PURE__ */ (0, import_jsx_runtime310.jsx)(StyledLabel4, { children: /* @__PURE__ */ (0, import_jsx_runtime310.jsx)(
17017
17054
  Heading,
17018
17055
  {
17019
17056
  renderAs: "span",
@@ -17029,7 +17066,7 @@ var SelectOptionGroup = ({ children, label, ...props }) => {
17029
17066
  var import_react_slider2 = require("@radix-ui/react-slider");
17030
17067
  var import_styled_components113 = __toESM(require("styled-components"));
17031
17068
  var import_type_guards66 = require("@wistia/type-guards");
17032
- var import_jsx_runtime310 = require("react/jsx-runtime");
17069
+ var import_jsx_runtime311 = require("react/jsx-runtime");
17033
17070
  var SliderContainer = import_styled_components113.default.div`
17034
17071
  --wui-slider-track-color: var(--wui-gray-6);
17035
17072
  --wui-slider-track-border-radius: var(--wui-border-radius-rounded);
@@ -17118,12 +17155,12 @@ var Slider = ({
17118
17155
  onChange(newValue);
17119
17156
  }
17120
17157
  };
17121
- return /* @__PURE__ */ (0, import_jsx_runtime310.jsx)(
17158
+ return /* @__PURE__ */ (0, import_jsx_runtime311.jsx)(
17122
17159
  SliderContainer,
17123
17160
  {
17124
17161
  ...otherProps,
17125
17162
  "data-testid": dataTestId,
17126
- children: /* @__PURE__ */ (0, import_jsx_runtime310.jsxs)(
17163
+ children: /* @__PURE__ */ (0, import_jsx_runtime311.jsxs)(
17127
17164
  StyledSliderRoot,
17128
17165
  {
17129
17166
  "aria-label": ariaLabel,
@@ -17136,8 +17173,8 @@ var Slider = ({
17136
17173
  step,
17137
17174
  ...value ? { value } : {},
17138
17175
  children: [
17139
- /* @__PURE__ */ (0, import_jsx_runtime310.jsx)(StyledSliderTrack, { "data-testid": `${dataTestId}-track`, children: /* @__PURE__ */ (0, import_jsx_runtime310.jsx)(StyledSliderRange, { "data-testid": `${dataTestId}-range` }) }),
17140
- values.map((_, index) => /* @__PURE__ */ (0, import_jsx_runtime310.jsx)(
17176
+ /* @__PURE__ */ (0, import_jsx_runtime311.jsx)(StyledSliderTrack, { "data-testid": `${dataTestId}-track`, children: /* @__PURE__ */ (0, import_jsx_runtime311.jsx)(StyledSliderRange, { "data-testid": `${dataTestId}-range` }) }),
17177
+ values.map((_, index) => /* @__PURE__ */ (0, import_jsx_runtime311.jsx)(
17141
17178
  StyledSliderThumb,
17142
17179
  {
17143
17180
  "data-testid": `${dataTestId}-thumb-${index}`
@@ -17154,7 +17191,7 @@ Slider.displayName = "Slider_UI";
17154
17191
 
17155
17192
  // src/components/Table/Table.tsx
17156
17193
  var import_styled_components114 = __toESM(require("styled-components"));
17157
- var import_jsx_runtime311 = require("react/jsx-runtime");
17194
+ var import_jsx_runtime312 = require("react/jsx-runtime");
17158
17195
  var StyledTable = import_styled_components114.default.table`
17159
17196
  width: 100%;
17160
17197
  border-collapse: collapse;
@@ -17184,7 +17221,7 @@ var Table = ({
17184
17221
  visuallyHiddenHeader = false,
17185
17222
  ...props
17186
17223
  }) => {
17187
- return /* @__PURE__ */ (0, import_jsx_runtime311.jsx)(
17224
+ return /* @__PURE__ */ (0, import_jsx_runtime312.jsx)(
17188
17225
  StyledTable,
17189
17226
  {
17190
17227
  $divided: divided,
@@ -17205,16 +17242,16 @@ var import_react92 = require("react");
17205
17242
  var TableSectionContext = (0, import_react92.createContext)(null);
17206
17243
 
17207
17244
  // src/components/Table/TableBody.tsx
17208
- var import_jsx_runtime312 = require("react/jsx-runtime");
17245
+ var import_jsx_runtime313 = require("react/jsx-runtime");
17209
17246
  var StyledTableBody = import_styled_components115.default.tbody``;
17210
17247
  var TableBody = ({ children, ...props }) => {
17211
- return /* @__PURE__ */ (0, import_jsx_runtime312.jsx)(TableSectionContext.Provider, { value: "body", children: /* @__PURE__ */ (0, import_jsx_runtime312.jsx)(StyledTableBody, { ...props, children }) });
17248
+ return /* @__PURE__ */ (0, import_jsx_runtime313.jsx)(TableSectionContext.Provider, { value: "body", children: /* @__PURE__ */ (0, import_jsx_runtime313.jsx)(StyledTableBody, { ...props, children }) });
17212
17249
  };
17213
17250
 
17214
17251
  // src/components/Table/TableCell.tsx
17215
17252
  var import_react94 = require("react");
17216
17253
  var import_styled_components116 = __toESM(require("styled-components"));
17217
- var import_jsx_runtime313 = require("react/jsx-runtime");
17254
+ var import_jsx_runtime314 = require("react/jsx-runtime");
17218
17255
  var sharedStyles = import_styled_components116.css`
17219
17256
  color: var(--wui-color-text);
17220
17257
  padding: var(--wui-space-02);
@@ -17235,35 +17272,35 @@ var StyledTd = import_styled_components116.default.td`
17235
17272
  var TableCell = ({ children, ...props }) => {
17236
17273
  const section = (0, import_react94.useContext)(TableSectionContext);
17237
17274
  if (section === "head") {
17238
- return /* @__PURE__ */ (0, import_jsx_runtime313.jsx)(StyledTh, { ...props, children });
17275
+ return /* @__PURE__ */ (0, import_jsx_runtime314.jsx)(StyledTh, { ...props, children });
17239
17276
  }
17240
- return /* @__PURE__ */ (0, import_jsx_runtime313.jsx)(StyledTd, { ...props, children });
17277
+ return /* @__PURE__ */ (0, import_jsx_runtime314.jsx)(StyledTd, { ...props, children });
17241
17278
  };
17242
17279
 
17243
17280
  // src/components/Table/TableFoot.tsx
17244
17281
  var import_react95 = require("react");
17245
17282
  var import_styled_components117 = __toESM(require("styled-components"));
17246
- var import_jsx_runtime314 = require("react/jsx-runtime");
17283
+ var import_jsx_runtime315 = require("react/jsx-runtime");
17247
17284
  var StyledTableFoot = import_styled_components117.default.tfoot``;
17248
17285
  var TableFoot = ({ children, ...props }) => {
17249
- return /* @__PURE__ */ (0, import_jsx_runtime314.jsx)(TableSectionContext.Provider, { value: "footer", children: /* @__PURE__ */ (0, import_jsx_runtime314.jsx)(StyledTableFoot, { ...props, children }) });
17286
+ return /* @__PURE__ */ (0, import_jsx_runtime315.jsx)(TableSectionContext.Provider, { value: "footer", children: /* @__PURE__ */ (0, import_jsx_runtime315.jsx)(StyledTableFoot, { ...props, children }) });
17250
17287
  };
17251
17288
 
17252
17289
  // src/components/Table/TableHead.tsx
17253
17290
  var import_react96 = require("react");
17254
17291
  var import_styled_components118 = __toESM(require("styled-components"));
17255
- var import_jsx_runtime315 = require("react/jsx-runtime");
17292
+ var import_jsx_runtime316 = require("react/jsx-runtime");
17256
17293
  var StyledThead = import_styled_components118.default.thead``;
17257
17294
  var TableHead = ({ children, ...props }) => {
17258
- return /* @__PURE__ */ (0, import_jsx_runtime315.jsx)(TableSectionContext.Provider, { value: "head", children: /* @__PURE__ */ (0, import_jsx_runtime315.jsx)(StyledThead, { ...props, children }) });
17295
+ return /* @__PURE__ */ (0, import_jsx_runtime316.jsx)(TableSectionContext.Provider, { value: "head", children: /* @__PURE__ */ (0, import_jsx_runtime316.jsx)(StyledThead, { ...props, children }) });
17259
17296
  };
17260
17297
 
17261
17298
  // src/components/Table/TableRow.tsx
17262
17299
  var import_styled_components119 = __toESM(require("styled-components"));
17263
- var import_jsx_runtime316 = require("react/jsx-runtime");
17300
+ var import_jsx_runtime317 = require("react/jsx-runtime");
17264
17301
  var StyledTableRow = import_styled_components119.default.tr``;
17265
17302
  var TableRow = ({ children, ...props }) => {
17266
- return /* @__PURE__ */ (0, import_jsx_runtime316.jsx)(StyledTableRow, { ...props, children });
17303
+ return /* @__PURE__ */ (0, import_jsx_runtime317.jsx)(StyledTableRow, { ...props, children });
17267
17304
  };
17268
17305
 
17269
17306
  // src/components/Tabs/Tabs.tsx
@@ -17284,7 +17321,7 @@ var useTabsValue = () => {
17284
17321
  };
17285
17322
 
17286
17323
  // src/components/Tabs/Tabs.tsx
17287
- var import_jsx_runtime317 = require("react/jsx-runtime");
17324
+ var import_jsx_runtime318 = require("react/jsx-runtime");
17288
17325
  var Tabs = ({
17289
17326
  children,
17290
17327
  value: valueProp,
@@ -17312,15 +17349,15 @@ var Tabs = ({
17312
17349
  if ((0, import_type_guards67.isNotNil)(defaultValue)) {
17313
17350
  rootProps.defaultValue = defaultValue;
17314
17351
  }
17315
- return /* @__PURE__ */ (0, import_jsx_runtime317.jsx)(import_react_tabs.Root, { ...rootProps, children: /* @__PURE__ */ (0, import_jsx_runtime317.jsx)(TabsValueProvider, { value: value ?? defaultValue, children: /* @__PURE__ */ (0, import_jsx_runtime317.jsx)(SelectedItemStyleProvider, { children }) }) });
17352
+ return /* @__PURE__ */ (0, import_jsx_runtime318.jsx)(import_react_tabs.Root, { ...rootProps, children: /* @__PURE__ */ (0, import_jsx_runtime318.jsx)(TabsValueProvider, { value: value ?? defaultValue, children: /* @__PURE__ */ (0, import_jsx_runtime318.jsx)(SelectedItemStyleProvider, { children }) }) });
17316
17353
  };
17317
17354
  Tabs.displayName = "Tabs_UI";
17318
17355
 
17319
17356
  // src/components/Tabs/TabsContent.tsx
17320
17357
  var import_react_tabs2 = require("@radix-ui/react-tabs");
17321
- var import_jsx_runtime318 = require("react/jsx-runtime");
17358
+ var import_jsx_runtime319 = require("react/jsx-runtime");
17322
17359
  var TabsContent = ({ children, value }) => {
17323
- return /* @__PURE__ */ (0, import_jsx_runtime318.jsx)(import_react_tabs2.Content, { value, children });
17360
+ return /* @__PURE__ */ (0, import_jsx_runtime319.jsx)(import_react_tabs2.Content, { value, children });
17324
17361
  };
17325
17362
  TabsContent.displayName = "TabsContent_UI";
17326
17363
 
@@ -17340,14 +17377,14 @@ var TabsSelectedItemIndicatorDiv = (0, import_styled_components120.default)(Sele
17340
17377
  `;
17341
17378
 
17342
17379
  // src/components/Tabs/SelectedTabIndicator.tsx
17343
- var import_jsx_runtime319 = require("react/jsx-runtime");
17380
+ var import_jsx_runtime320 = require("react/jsx-runtime");
17344
17381
  var SelectedTabIndicator = () => {
17345
17382
  const { selectedItemIndicatorStyle } = useSelectedItemStyle();
17346
17383
  const selectedValue = useTabsValue();
17347
17384
  if (selectedValue == null || (0, import_type_guards68.isUndefined)(selectedItemIndicatorStyle)) {
17348
17385
  return null;
17349
17386
  }
17350
- return /* @__PURE__ */ (0, import_jsx_runtime319.jsx)(
17387
+ return /* @__PURE__ */ (0, import_jsx_runtime320.jsx)(
17351
17388
  TabsSelectedItemIndicatorDiv,
17352
17389
  {
17353
17390
  "data-wui-selected-item-indicator": true,
@@ -17357,19 +17394,19 @@ var SelectedTabIndicator = () => {
17357
17394
  };
17358
17395
 
17359
17396
  // src/components/Tabs/TabsList.tsx
17360
- var import_jsx_runtime320 = require("react/jsx-runtime");
17397
+ var import_jsx_runtime321 = require("react/jsx-runtime");
17361
17398
  var StyledRadixTabsList = (0, import_styled_components121.default)(import_react_tabs3.List)`
17362
17399
  ${segmentedControlStyles}
17363
17400
  `;
17364
17401
  var TabsList = ({ children, fullWidth = true, ...props }) => {
17365
- return /* @__PURE__ */ (0, import_jsx_runtime320.jsxs)(
17402
+ return /* @__PURE__ */ (0, import_jsx_runtime321.jsxs)(
17366
17403
  StyledRadixTabsList,
17367
17404
  {
17368
17405
  $fullWidth: fullWidth,
17369
17406
  "aria-label": props["aria-label"],
17370
17407
  children: [
17371
17408
  children,
17372
- /* @__PURE__ */ (0, import_jsx_runtime320.jsx)(SelectedTabIndicator, {})
17409
+ /* @__PURE__ */ (0, import_jsx_runtime321.jsx)(SelectedTabIndicator, {})
17373
17410
  ]
17374
17411
  }
17375
17412
  );
@@ -17392,7 +17429,7 @@ var StyledRadixTabsTrigger = (0, import_styled_components122.default)(import_rea
17392
17429
  `;
17393
17430
 
17394
17431
  // src/components/Tabs/TabsTrigger.tsx
17395
- var import_jsx_runtime321 = require("react/jsx-runtime");
17432
+ var import_jsx_runtime322 = require("react/jsx-runtime");
17396
17433
  var TabsTrigger = (0, import_react99.forwardRef)(
17397
17434
  ({ disabled = false, icon, label, "aria-label": ariaLabel, value, ...otherProps }, forwardedRef) => {
17398
17435
  const selectedValue = useTabsValue();
@@ -17424,7 +17461,7 @@ var TabsTrigger = (0, import_react99.forwardRef)(
17424
17461
  resizeObserver.disconnect();
17425
17462
  };
17426
17463
  }, [selectedValue, setSelectedItemMeasurements, value]);
17427
- return /* @__PURE__ */ (0, import_jsx_runtime321.jsxs)(
17464
+ return /* @__PURE__ */ (0, import_jsx_runtime322.jsxs)(
17428
17465
  StyledRadixTabsTrigger,
17429
17466
  {
17430
17467
  ...otherProps,
@@ -17446,7 +17483,7 @@ TabsTrigger.displayName = "TabsTrigger_UI";
17446
17483
  // src/components/Thumbnail/ThumbnailBadge.tsx
17447
17484
  var import_styled_components123 = __toESM(require("styled-components"));
17448
17485
  var import_type_guards70 = require("@wistia/type-guards");
17449
- var import_jsx_runtime322 = require("react/jsx-runtime");
17486
+ var import_jsx_runtime323 = require("react/jsx-runtime");
17450
17487
  var StyledThumbnailBadge = import_styled_components123.default.div`
17451
17488
  align-items: center;
17452
17489
  background-color: rgb(0 0 0 / 50%);
@@ -17473,9 +17510,9 @@ var StyledThumbnailBadge = import_styled_components123.default.div`
17473
17510
  }
17474
17511
  `;
17475
17512
  var ThumbnailBadge = ({ icon, label, ...props }) => {
17476
- return /* @__PURE__ */ (0, import_jsx_runtime322.jsxs)(StyledThumbnailBadge, { ...props, children: [
17513
+ return /* @__PURE__ */ (0, import_jsx_runtime323.jsxs)(StyledThumbnailBadge, { ...props, children: [
17477
17514
  (0, import_type_guards70.isNotNil)(icon) && icon,
17478
- /* @__PURE__ */ (0, import_jsx_runtime322.jsx)("span", { children: label })
17515
+ /* @__PURE__ */ (0, import_jsx_runtime323.jsx)("span", { children: label })
17479
17516
  ] });
17480
17517
  };
17481
17518
  ThumbnailBadge.displayName = "ThumbnailBadge_UI";
@@ -17620,7 +17657,7 @@ var getBackgroundGradient = (gradientName = void 0) => {
17620
17657
  // src/components/Thumbnail/ThumbnailStoryboardViewer.tsx
17621
17658
  var import_styled_components125 = __toESM(require("styled-components"));
17622
17659
  var import_type_guards72 = require("@wistia/type-guards");
17623
- var import_jsx_runtime323 = require("react/jsx-runtime");
17660
+ var import_jsx_runtime324 = require("react/jsx-runtime");
17624
17661
  var ScrubLine = import_styled_components125.default.div`
17625
17662
  position: absolute;
17626
17663
  top: 0;
@@ -17732,14 +17769,14 @@ var ThumbnailStoryboardViewer = ({
17732
17769
  backgroundPosition,
17733
17770
  backgroundSize
17734
17771
  };
17735
- return /* @__PURE__ */ (0, import_jsx_runtime323.jsxs)(
17772
+ return /* @__PURE__ */ (0, import_jsx_runtime324.jsxs)(
17736
17773
  "div",
17737
17774
  {
17738
17775
  ...props,
17739
17776
  style: viewerStyles,
17740
17777
  children: [
17741
- /* @__PURE__ */ (0, import_jsx_runtime323.jsx)("div", { style: storyboardStyles }),
17742
- showScrubLine ? /* @__PURE__ */ (0, import_jsx_runtime323.jsx)(
17778
+ /* @__PURE__ */ (0, import_jsx_runtime324.jsx)("div", { style: storyboardStyles }),
17779
+ showScrubLine ? /* @__PURE__ */ (0, import_jsx_runtime324.jsx)(
17743
17780
  ScrubLine,
17744
17781
  {
17745
17782
  style: {
@@ -17753,7 +17790,7 @@ var ThumbnailStoryboardViewer = ({
17753
17790
  };
17754
17791
 
17755
17792
  // src/components/Thumbnail/Thumbnail.tsx
17756
- var import_jsx_runtime324 = require("react/jsx-runtime");
17793
+ var import_jsx_runtime325 = require("react/jsx-runtime");
17757
17794
  var WideThumbnailImage = import_styled_components126.default.img`
17758
17795
  height: 100%;
17759
17796
  object-fit: cover;
@@ -17766,7 +17803,7 @@ var SquareThumbnailImage = import_styled_components126.default.img`
17766
17803
  `;
17767
17804
  var ThumbnailImage = ({ thumbnailImageType, thumbnailUrl }) => {
17768
17805
  if (thumbnailImageType === "wide") {
17769
- return /* @__PURE__ */ (0, import_jsx_runtime324.jsx)(
17806
+ return /* @__PURE__ */ (0, import_jsx_runtime325.jsx)(
17770
17807
  WideThumbnailImage,
17771
17808
  {
17772
17809
  alt: "",
@@ -17775,7 +17812,7 @@ var ThumbnailImage = ({ thumbnailImageType, thumbnailUrl }) => {
17775
17812
  }
17776
17813
  );
17777
17814
  }
17778
- return /* @__PURE__ */ (0, import_jsx_runtime324.jsx)(
17815
+ return /* @__PURE__ */ (0, import_jsx_runtime325.jsx)(
17779
17816
  SquareThumbnailImage,
17780
17817
  {
17781
17818
  alt: "",
@@ -17822,7 +17859,7 @@ var StoryboardRenderer = ({
17822
17859
  } = storyboard;
17823
17860
  const targetWidth = (0, import_type_guards73.isString)(width) ? parseInt(width, 10) : Number(width);
17824
17861
  const effectiveCursorPosition = isStoryboardReady ? cursorPosition : null;
17825
- return /* @__PURE__ */ (0, import_jsx_runtime324.jsx)(
17862
+ return /* @__PURE__ */ (0, import_jsx_runtime325.jsx)(
17826
17863
  ThumbnailStoryboardViewer,
17827
17864
  {
17828
17865
  cursorPosition: effectiveCursorPosition,
@@ -17904,7 +17941,7 @@ var Thumbnail = (0, import_react100.forwardRef)(
17904
17941
  }, [isScrubbable, isMouseOver, isStoryboardReady, storyboard, height]);
17905
17942
  let thumbnailContent = null;
17906
17943
  if (storyboard && shouldRenderStoryboard) {
17907
- thumbnailContent = /* @__PURE__ */ (0, import_jsx_runtime324.jsx)(
17944
+ thumbnailContent = /* @__PURE__ */ (0, import_jsx_runtime325.jsx)(
17908
17945
  StoryboardRenderer,
17909
17946
  {
17910
17947
  cursorPosition,
@@ -17915,7 +17952,7 @@ var Thumbnail = (0, import_react100.forwardRef)(
17915
17952
  }
17916
17953
  );
17917
17954
  } else if ((0, import_type_guards73.isNotNil)(thumbnailUrl)) {
17918
- thumbnailContent = /* @__PURE__ */ (0, import_jsx_runtime324.jsx)(
17955
+ thumbnailContent = /* @__PURE__ */ (0, import_jsx_runtime325.jsx)(
17919
17956
  ThumbnailImage,
17920
17957
  {
17921
17958
  thumbnailImageType,
@@ -17925,7 +17962,7 @@ var Thumbnail = (0, import_react100.forwardRef)(
17925
17962
  } else {
17926
17963
  thumbnailContent = null;
17927
17964
  }
17928
- return /* @__PURE__ */ (0, import_jsx_runtime324.jsxs)(
17965
+ return /* @__PURE__ */ (0, import_jsx_runtime325.jsxs)(
17929
17966
  StyledThumbnail,
17930
17967
  {
17931
17968
  ref,
@@ -17952,7 +17989,7 @@ Thumbnail.displayName = "Thumbnail_UI";
17952
17989
  var import_react101 = __toESM(require("react"));
17953
17990
  var import_styled_components127 = __toESM(require("styled-components"));
17954
17991
  var import_type_guards74 = require("@wistia/type-guards");
17955
- var import_jsx_runtime325 = (
17992
+ var import_jsx_runtime326 = (
17956
17993
  // ThumbnailCollage will fallback to a Thumbnail with a gradient background if no children are provided
17957
17994
  require("react/jsx-runtime")
17958
17995
  );
@@ -18037,7 +18074,7 @@ var ThumbnailCollage = ({
18037
18074
  children: void 0
18038
18075
  });
18039
18076
  }) : [
18040
- /* @__PURE__ */ (0, import_jsx_runtime325.jsx)(
18077
+ /* @__PURE__ */ (0, import_jsx_runtime326.jsx)(
18041
18078
  Thumbnail,
18042
18079
  {
18043
18080
  gradientBackground,
@@ -18046,7 +18083,7 @@ var ThumbnailCollage = ({
18046
18083
  "fallback"
18047
18084
  )
18048
18085
  ];
18049
- return /* @__PURE__ */ (0, import_jsx_runtime325.jsx)(
18086
+ return /* @__PURE__ */ (0, import_jsx_runtime326.jsx)(
18050
18087
  StyledThumbnailCollage,
18051
18088
  {
18052
18089
  $gradientBackground: gradientBackground,
@@ -18060,24 +18097,24 @@ var ThumbnailCollage = ({
18060
18097
  // src/components/WistiaLogo/WistiaLogo.tsx
18061
18098
  var import_styled_components128 = __toESM(require("styled-components"));
18062
18099
  var import_type_guards75 = require("@wistia/type-guards");
18063
- var import_jsx_runtime326 = require("react/jsx-runtime");
18100
+ var import_jsx_runtime327 = require("react/jsx-runtime");
18064
18101
  var renderBrandmark = (brandmarkColor, iconOnly) => {
18065
18102
  if (iconOnly) {
18066
- return /* @__PURE__ */ (0, import_jsx_runtime326.jsx)(
18103
+ return /* @__PURE__ */ (0, import_jsx_runtime327.jsx)(
18067
18104
  "g",
18068
18105
  {
18069
18106
  "data-testid": "ui-wistia-logo-brandmark",
18070
18107
  fill: brandmarkColor,
18071
- children: /* @__PURE__ */ (0, import_jsx_runtime326.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" })
18108
+ children: /* @__PURE__ */ (0, import_jsx_runtime327.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" })
18072
18109
  }
18073
18110
  );
18074
18111
  }
18075
- return /* @__PURE__ */ (0, import_jsx_runtime326.jsx)(
18112
+ return /* @__PURE__ */ (0, import_jsx_runtime327.jsx)(
18076
18113
  "g",
18077
18114
  {
18078
18115
  "data-testid": "ui-wistia-logo-brandmark",
18079
18116
  fill: brandmarkColor,
18080
- children: /* @__PURE__ */ (0, import_jsx_runtime326.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" })
18117
+ children: /* @__PURE__ */ (0, import_jsx_runtime327.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" })
18081
18118
  }
18082
18119
  );
18083
18120
  };
@@ -18085,12 +18122,12 @@ var renderLogotype = (logotypeColor, iconOnly) => {
18085
18122
  if (iconOnly) {
18086
18123
  return null;
18087
18124
  }
18088
- return /* @__PURE__ */ (0, import_jsx_runtime326.jsx)(
18125
+ return /* @__PURE__ */ (0, import_jsx_runtime327.jsx)(
18089
18126
  "g",
18090
18127
  {
18091
18128
  "data-testid": "ui-wistia-logo-logotype",
18092
18129
  fill: logotypeColor,
18093
- children: /* @__PURE__ */ (0, import_jsx_runtime326.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" })
18130
+ children: /* @__PURE__ */ (0, import_jsx_runtime327.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" })
18094
18131
  }
18095
18132
  );
18096
18133
  };
@@ -18158,7 +18195,7 @@ var WistiaLogo = ({
18158
18195
  };
18159
18196
  const brandmarkColor = VARIANT_COLORS[variant].brandmark;
18160
18197
  const logotypeColor = VARIANT_COLORS[variant].logotype;
18161
- const Logo = /* @__PURE__ */ (0, import_jsx_runtime326.jsxs)(
18198
+ const Logo = /* @__PURE__ */ (0, import_jsx_runtime327.jsxs)(
18162
18199
  WistiaLogoComponent,
18163
18200
  {
18164
18201
  $hoverColor: hoverColor,
@@ -18171,21 +18208,21 @@ var WistiaLogo = ({
18171
18208
  xmlns: "http://www.w3.org/2000/svg",
18172
18209
  ...props,
18173
18210
  children: [
18174
- /* @__PURE__ */ (0, import_jsx_runtime326.jsx)("title", { children: title }),
18175
- (0, import_type_guards75.isNotNil)(description) ? /* @__PURE__ */ (0, import_jsx_runtime326.jsx)("desc", { children: description }) : null,
18211
+ /* @__PURE__ */ (0, import_jsx_runtime327.jsx)("title", { children: title }),
18212
+ (0, import_type_guards75.isNotNil)(description) ? /* @__PURE__ */ (0, import_jsx_runtime327.jsx)("desc", { children: description }) : null,
18176
18213
  renderBrandmark(brandmarkColor, iconOnly),
18177
18214
  renderLogotype(logotypeColor, iconOnly)
18178
18215
  ]
18179
18216
  }
18180
18217
  );
18181
- return href !== void 0 ? /* @__PURE__ */ (0, import_jsx_runtime326.jsx)("a", { href, children: Logo }) : Logo;
18218
+ return href !== void 0 ? /* @__PURE__ */ (0, import_jsx_runtime327.jsx)("a", { href, children: Logo }) : Logo;
18182
18219
  };
18183
18220
  WistiaLogo.displayName = "WistiaLogo_UI";
18184
18221
 
18185
18222
  // src/components/SplitButton/SplitButton.tsx
18186
18223
  var import_styled_components129 = __toESM(require("styled-components"));
18187
18224
  var import_type_guards76 = require("@wistia/type-guards");
18188
- var import_jsx_runtime327 = require("react/jsx-runtime");
18225
+ var import_jsx_runtime328 = require("react/jsx-runtime");
18189
18226
  var StyledSplitButton = import_styled_components129.default.span`
18190
18227
  white-space: nowrap;
18191
18228
 
@@ -18203,7 +18240,7 @@ var StyledSplitButton = import_styled_components129.default.span`
18203
18240
  var SplitButton = ({
18204
18241
  children,
18205
18242
  menuLabel = "Select an option",
18206
- menuIcon = /* @__PURE__ */ (0, import_jsx_runtime327.jsx)(Icon, { type: "caret-down" }),
18243
+ menuIcon = /* @__PURE__ */ (0, import_jsx_runtime328.jsx)(Icon, { type: "caret-down" }),
18207
18244
  menuItems,
18208
18245
  disabled = false,
18209
18246
  colorScheme = "default",
@@ -18214,8 +18251,8 @@ var SplitButton = ({
18214
18251
  menuProps = {},
18215
18252
  ...props
18216
18253
  }) => {
18217
- return /* @__PURE__ */ (0, import_jsx_runtime327.jsxs)(StyledSplitButton, { children: [
18218
- /* @__PURE__ */ (0, import_jsx_runtime327.jsx)(
18254
+ return /* @__PURE__ */ (0, import_jsx_runtime328.jsxs)(StyledSplitButton, { children: [
18255
+ /* @__PURE__ */ (0, import_jsx_runtime328.jsx)(
18219
18256
  Button,
18220
18257
  {
18221
18258
  colorScheme,
@@ -18227,12 +18264,12 @@ var SplitButton = ({
18227
18264
  children
18228
18265
  }
18229
18266
  ),
18230
- (0, import_type_guards76.isNotNil)(menuItems) && /* @__PURE__ */ (0, import_jsx_runtime327.jsx)(
18267
+ (0, import_type_guards76.isNotNil)(menuItems) && /* @__PURE__ */ (0, import_jsx_runtime328.jsx)(
18231
18268
  Menu,
18232
18269
  {
18233
18270
  ...menuProps,
18234
18271
  disabled,
18235
- trigger: /* @__PURE__ */ (0, import_jsx_runtime327.jsx)(
18272
+ trigger: /* @__PURE__ */ (0, import_jsx_runtime328.jsx)(
18236
18273
  IconButton,
18237
18274
  {
18238
18275
  colorScheme,
@@ -18339,6 +18376,8 @@ SplitButton.displayName = "SplitButton_UI";
18339
18376
  MenuLabel,
18340
18377
  MenuRadioGroup,
18341
18378
  Modal,
18379
+ ModalCallout,
18380
+ ModalCallouts,
18342
18381
  PersistentFileAmountLimitValidator,
18343
18382
  Popover,
18344
18383
  ProgressBar,