@wistia/ui 0.6.15 → 0.6.16

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.6.15
3
+ * @license @wistia/ui v0.6.16
4
4
  *
5
5
  * Copyright (c) 2024-2025, Wistia, Inc. and its affiliates.
6
6
  *
@@ -86,6 +86,7 @@ __export(index_exports, {
86
86
  Modal: () => Modal,
87
87
  PersistentFileAmountLimitValidator: () => import_validators.PersistentFileAmountLimitValidator,
88
88
  Popover: () => Popover,
89
+ ProgressBar: () => ProgressBar,
89
90
  Radio: () => Radio,
90
91
  RadioGroup: () => RadioGroup,
91
92
  RadioMenuItem: () => RadioMenuItem,
@@ -9881,9 +9882,9 @@ var ModalHeader = ({
9881
9882
  hideTitle,
9882
9883
  hideCloseButton
9883
9884
  }) => {
9884
- const TitleWrapper = hideTitle ? ScreenReaderOnly : Title;
9885
+ const TitleComponent = hideTitle ? /* @__PURE__ */ (0, import_jsx_runtime234.jsx)(ScreenReaderOnly, { children: /* @__PURE__ */ (0, import_jsx_runtime234.jsx)(Title, { children: title }) }) : /* @__PURE__ */ (0, import_jsx_runtime234.jsx)(Title, { children: title });
9885
9886
  return /* @__PURE__ */ (0, import_jsx_runtime234.jsxs)(Header, { children: [
9886
- /* @__PURE__ */ (0, import_jsx_runtime234.jsx)(TitleWrapper, { children: title }),
9887
+ TitleComponent,
9887
9888
  hideCloseButton ? null : /* @__PURE__ */ (0, import_jsx_runtime234.jsx)(ModalCloseButton, {})
9888
9889
  ] });
9889
9890
  };
@@ -10155,17 +10156,96 @@ var Popover = ({
10155
10156
  };
10156
10157
  Popover.displayName = "Popover";
10157
10158
 
10158
- // src/components/Radio/Radio.tsx
10159
- var import_react43 = require("react");
10159
+ // src/components/ProgressBar/ProgressBar.tsx
10160
10160
  var import_styled_components63 = __toESM(require("styled-components"));
10161
+ var import_react_progress = require("@radix-ui/react-progress");
10161
10162
  var import_type_guards36 = require("@wistia/type-guards");
10162
10163
  var import_jsx_runtime239 = require("react/jsx-runtime");
10163
- var StyledLabelWrapper2 = import_styled_components63.default.div`
10164
+ var ProgressBarWrapper = import_styled_components63.default.div`
10165
+ --progress-bar-height: 8px;
10166
+ --progress-bar-indicator-color: var(--wui-color-bg-fill);
10167
+ --progress-bar-background-color: var(--wui-color-bg-surface-secondary);
10168
+
10169
+ display: flex;
10170
+ align-items: center;
10171
+ gap: var(--wui-space-02);
10172
+ `;
10173
+ var getTranslateValue = (progress, max) => {
10174
+ if (progress === 0) {
10175
+ return "translateX(-101%)";
10176
+ }
10177
+ const progressPercentage = progress / max * 100;
10178
+ return `translateX(-${100 - progressPercentage}%)`;
10179
+ };
10180
+ var ProgressBarLabel = import_styled_components63.default.div`
10181
+ display: flex;
10182
+ line-height: var(--wui-typography-label-3-line-height);
10183
+ font-size: var(--wui-typography-label-3-size);
10184
+ font-weight: var(--wui-typography-weight-label);
10185
+ color: var(--wui-color-text-secondary);
10186
+ flex-shrink: 0;
10187
+ `;
10188
+ var StyledProgressIndicator = (0, import_styled_components63.default)(import_react_progress.Indicator)`
10189
+ background-color: var(--progress-bar-indicator-color);
10190
+ width: 100%;
10191
+ height: 100%;
10192
+ border-top-right-radius: var(--wui-border-radius-rounded);
10193
+ border-bottom-right-radius: var(--wui-border-radius-rounded);
10194
+ transition: transform 660ms cubic-bezier(0.65, 0, 0.35, 1);
10195
+ transform: ${({ $progress, $max }) => getTranslateValue($progress, $max)};
10196
+ `;
10197
+ var StyledProgressBar = (0, import_styled_components63.default)(import_react_progress.Root)`
10198
+ position: relative;
10199
+ overflow: hidden;
10200
+ background: var(--progress-bar-background-color);
10201
+ border-radius: var(--wui-border-radius-rounded);
10202
+ width: 100%;
10203
+ height: var(--progress-bar-height);
10204
+
10205
+ /* Fix overflow clipping in Safari: https://gist.github.com/domske/b66047671c780a238b51c51ffde8d3a0 */
10206
+ transform: translateZ(0);
10207
+ `;
10208
+ var ProgressBar = ({
10209
+ progress,
10210
+ max = 100,
10211
+ children,
10212
+ labelLeft,
10213
+ labelRight,
10214
+ ...props
10215
+ }) => {
10216
+ return /* @__PURE__ */ (0, import_jsx_runtime239.jsxs)(ProgressBarWrapper, { children: [
10217
+ (0, import_type_guards36.isNotNil)(labelLeft) ? /* @__PURE__ */ (0, import_jsx_runtime239.jsx)(ProgressBarLabel, { children: labelLeft }) : null,
10218
+ /* @__PURE__ */ (0, import_jsx_runtime239.jsx)(
10219
+ StyledProgressBar,
10220
+ {
10221
+ max,
10222
+ value: progress,
10223
+ ...props,
10224
+ children: /* @__PURE__ */ (0, import_jsx_runtime239.jsx)(
10225
+ StyledProgressIndicator,
10226
+ {
10227
+ $max: max,
10228
+ $progress: progress
10229
+ }
10230
+ )
10231
+ }
10232
+ ),
10233
+ (0, import_type_guards36.isNotNil)(labelRight) ? /* @__PURE__ */ (0, import_jsx_runtime239.jsx)(ProgressBarLabel, { children: labelRight }) : null
10234
+ ] });
10235
+ };
10236
+ ProgressBar.displayName = "ProgressBar";
10237
+
10238
+ // src/components/Radio/Radio.tsx
10239
+ var import_react43 = require("react");
10240
+ var import_styled_components64 = __toESM(require("styled-components"));
10241
+ var import_type_guards37 = require("@wistia/type-guards");
10242
+ var import_jsx_runtime240 = require("react/jsx-runtime");
10243
+ var StyledLabelWrapper2 = import_styled_components64.default.div`
10164
10244
  display: flex;
10165
10245
  flex-direction: column;
10166
10246
  padding-left: var(--wui-space-02);
10167
10247
  `;
10168
- var StyledRadio = import_styled_components63.default.input`
10248
+ var StyledRadio = import_styled_components64.default.input`
10169
10249
  box-shadow: ${({ type }) => type === "checkbox" ? "inset 0 0.5px 1.5px 0 rgba(0, 0, 0, 0.38)" : "none"};
10170
10250
  appearance: none;
10171
10251
  margin: 0;
@@ -10191,11 +10271,11 @@ var StyledRadio = import_styled_components63.default.input`
10191
10271
  transform: scale(1);
10192
10272
  }
10193
10273
  `;
10194
- var disabledStyle2 = import_styled_components63.css`
10274
+ var disabledStyle2 = import_styled_components64.css`
10195
10275
  cursor: not-allowed;
10196
10276
  opacity: 0.5;
10197
10277
  `;
10198
- var errorStyle = import_styled_components63.css`
10278
+ var errorStyle = import_styled_components64.css`
10199
10279
  /* TODO Lamp to design error state */
10200
10280
  &:hover,
10201
10281
  &:focus,
@@ -10203,11 +10283,11 @@ var errorStyle = import_styled_components63.css`
10203
10283
  border-color: transparent !important;
10204
10284
  }
10205
10285
  `;
10206
- var defaultHoverStyle = import_styled_components63.css`
10286
+ var defaultHoverStyle = import_styled_components64.css`
10207
10287
  /* TODO Lamp to design hover state */
10208
10288
  cursor: pointer;
10209
10289
  `;
10210
- var StyledRadioWrapper = import_styled_components63.default.div`
10290
+ var StyledRadioWrapper = import_styled_components64.default.div`
10211
10291
  align-items: baseline;
10212
10292
  border: 1px solid transparent;
10213
10293
  border-radius: 4px;
@@ -10244,14 +10324,14 @@ var Radio = (0, import_react43.forwardRef)(
10244
10324
  ...otherProps
10245
10325
  }, ref) => {
10246
10326
  const generatedId = (0, import_react43.useId)();
10247
- const computedId = (0, import_type_guards36.isNonEmptyString)(id) ? id : `ui-radio-${generatedId}`;
10248
- return /* @__PURE__ */ (0, import_jsx_runtime239.jsxs)(
10327
+ const computedId = (0, import_type_guards37.isNonEmptyString)(id) ? id : `ui-radio-${generatedId}`;
10328
+ return /* @__PURE__ */ (0, import_jsx_runtime240.jsxs)(
10249
10329
  StyledRadioWrapper,
10250
10330
  {
10251
10331
  "aria-invalid": otherProps["aria-invalid"],
10252
10332
  disabled,
10253
10333
  children: [
10254
- /* @__PURE__ */ (0, import_jsx_runtime239.jsx)(
10334
+ /* @__PURE__ */ (0, import_jsx_runtime240.jsx)(
10255
10335
  StyledRadio,
10256
10336
  {
10257
10337
  ref,
@@ -10266,8 +10346,8 @@ var Radio = (0, import_react43.forwardRef)(
10266
10346
  ...otherProps
10267
10347
  }
10268
10348
  ),
10269
- /* @__PURE__ */ (0, import_jsx_runtime239.jsxs)(StyledLabelWrapper2, { children: [
10270
- /* @__PURE__ */ (0, import_jsx_runtime239.jsx)(
10349
+ /* @__PURE__ */ (0, import_jsx_runtime240.jsxs)(StyledLabelWrapper2, { children: [
10350
+ /* @__PURE__ */ (0, import_jsx_runtime240.jsx)(
10271
10351
  Label,
10272
10352
  {
10273
10353
  disabled,
@@ -10276,7 +10356,7 @@ var Radio = (0, import_react43.forwardRef)(
10276
10356
  children: label
10277
10357
  }
10278
10358
  ),
10279
- /* @__PURE__ */ (0, import_jsx_runtime239.jsx)(LabelDescription, { children: description })
10359
+ /* @__PURE__ */ (0, import_jsx_runtime240.jsx)(LabelDescription, { children: description })
10280
10360
  ] })
10281
10361
  ]
10282
10362
  }
@@ -10287,13 +10367,13 @@ Radio.displayName = "Radio";
10287
10367
 
10288
10368
  // src/components/SegmentedControl/SegmentedControl.tsx
10289
10369
  var import_react47 = require("react");
10290
- var import_styled_components65 = __toESM(require("styled-components"));
10370
+ var import_styled_components66 = __toESM(require("styled-components"));
10291
10371
  var import_react_toggle_group = require("@radix-ui/react-toggle-group");
10292
- var import_type_guards37 = require("@wistia/type-guards");
10372
+ var import_type_guards38 = require("@wistia/type-guards");
10293
10373
 
10294
10374
  // src/components/SegmentedControl/useSelectedItemMeasurements.tsx
10295
10375
  var import_react44 = require("react");
10296
- var import_jsx_runtime240 = require("react/jsx-runtime");
10376
+ var import_jsx_runtime241 = require("react/jsx-runtime");
10297
10377
  var SelectedItemMeasurementsContext = (0, import_react44.createContext)(
10298
10378
  null
10299
10379
  );
@@ -10308,7 +10388,7 @@ var SelectedItemMeasurementsProvider = ({
10308
10388
  }),
10309
10389
  [selectedItemMeasurements]
10310
10390
  );
10311
- return /* @__PURE__ */ (0, import_jsx_runtime240.jsx)(SelectedItemMeasurementsContext.Provider, { value: contextValue, children });
10391
+ return /* @__PURE__ */ (0, import_jsx_runtime241.jsx)(SelectedItemMeasurementsContext.Provider, { value: contextValue, children });
10312
10392
  };
10313
10393
  var useSelectedItemMeasurements = () => {
10314
10394
  const context = (0, import_react44.useContext)(SelectedItemMeasurementsContext);
@@ -10322,7 +10402,7 @@ var useSelectedItemMeasurements = () => {
10322
10402
 
10323
10403
  // src/components/SegmentedControl/SelectedItemIndicator.tsx
10324
10404
  var import_react46 = require("react");
10325
- var import_styled_components64 = __toESM(require("styled-components"));
10405
+ var import_styled_components65 = __toESM(require("styled-components"));
10326
10406
 
10327
10407
  // src/components/SegmentedControl/useSegmentedControlValue.tsx
10328
10408
  var import_react45 = require("react");
@@ -10337,8 +10417,8 @@ var useSegmentedControlValue = () => {
10337
10417
  };
10338
10418
 
10339
10419
  // src/components/SegmentedControl/SelectedItemIndicator.tsx
10340
- var import_jsx_runtime241 = require("react/jsx-runtime");
10341
- var SelectedItemIndicatorDiv = import_styled_components64.default.div`
10420
+ var import_jsx_runtime242 = require("react/jsx-runtime");
10421
+ var SelectedItemIndicatorDiv = import_styled_components65.default.div`
10342
10422
  background-color: var(--wui-color-bg-fill-white);
10343
10423
  border-radius: var(--wui-border-radius-rounded);
10344
10424
  left: 0;
@@ -10364,7 +10444,7 @@ var SelectedItemIndicator = () => {
10364
10444
  if (!selectedValue) {
10365
10445
  return null;
10366
10446
  }
10367
- return /* @__PURE__ */ (0, import_jsx_runtime241.jsx)(
10447
+ return /* @__PURE__ */ (0, import_jsx_runtime242.jsx)(
10368
10448
  SelectedItemIndicatorDiv,
10369
10449
  {
10370
10450
  style: {
@@ -10377,8 +10457,8 @@ var SelectedItemIndicator = () => {
10377
10457
  };
10378
10458
 
10379
10459
  // src/components/SegmentedControl/SegmentedControl.tsx
10380
- var import_jsx_runtime242 = require("react/jsx-runtime");
10381
- var segmentedControlStyles = import_styled_components65.css`
10460
+ var import_jsx_runtime243 = require("react/jsx-runtime");
10461
+ var segmentedControlStyles = import_styled_components66.css`
10382
10462
  display: inline-flex;
10383
10463
  background-color: var(--wui-color-bg-surface-secondary);
10384
10464
  border-radius: var(--wui-border-radius-rounded);
@@ -10388,7 +10468,7 @@ var segmentedControlStyles = import_styled_components65.css`
10388
10468
  position: relative;
10389
10469
  width: ${({ $fullWidth }) => $fullWidth ? "100%" : "auto"};
10390
10470
  `;
10391
- var StyledSegmentedControl = (0, import_styled_components65.default)(import_react_toggle_group.Root)`
10471
+ var StyledSegmentedControl = (0, import_styled_components66.default)(import_react_toggle_group.Root)`
10392
10472
  ${segmentedControlStyles}
10393
10473
  `;
10394
10474
  var SegmentedControl = (0, import_react47.forwardRef)(
@@ -10400,10 +10480,10 @@ var SegmentedControl = (0, import_react47.forwardRef)(
10400
10480
  onSelectedValueChange,
10401
10481
  ...props
10402
10482
  }, ref) => {
10403
- if ((0, import_type_guards37.isNil)(children)) {
10483
+ if ((0, import_type_guards38.isNil)(children)) {
10404
10484
  return null;
10405
10485
  }
10406
- return /* @__PURE__ */ (0, import_jsx_runtime242.jsx)(
10486
+ return /* @__PURE__ */ (0, import_jsx_runtime243.jsx)(
10407
10487
  StyledSegmentedControl,
10408
10488
  {
10409
10489
  ref,
@@ -10415,8 +10495,8 @@ var SegmentedControl = (0, import_react47.forwardRef)(
10415
10495
  type: "single",
10416
10496
  value: selectedValue,
10417
10497
  ...props,
10418
- children: /* @__PURE__ */ (0, import_jsx_runtime242.jsx)(SegmentedControlValueProvider, { value: selectedValue, children: /* @__PURE__ */ (0, import_jsx_runtime242.jsxs)(SelectedItemMeasurementsProvider, { children: [
10419
- /* @__PURE__ */ (0, import_jsx_runtime242.jsx)(SelectedItemIndicator, {}),
10498
+ children: /* @__PURE__ */ (0, import_jsx_runtime243.jsx)(SegmentedControlValueProvider, { value: selectedValue, children: /* @__PURE__ */ (0, import_jsx_runtime243.jsxs)(SelectedItemMeasurementsProvider, { children: [
10499
+ /* @__PURE__ */ (0, import_jsx_runtime243.jsx)(SelectedItemIndicator, {}),
10420
10500
  children
10421
10501
  ] }) })
10422
10502
  }
@@ -10427,27 +10507,27 @@ SegmentedControl.displayName = "SegmentedControl";
10427
10507
 
10428
10508
  // src/components/SegmentedControl/SegmentedControlItem.tsx
10429
10509
  var import_react48 = require("react");
10430
- var import_styled_components66 = __toESM(require("styled-components"));
10510
+ var import_styled_components67 = __toESM(require("styled-components"));
10431
10511
  var import_react_toggle_group2 = require("@radix-ui/react-toggle-group");
10432
- var import_type_guards39 = require("@wistia/type-guards");
10512
+ var import_type_guards40 = require("@wistia/type-guards");
10433
10513
 
10434
10514
  // src/private/helpers/mergeRefs/mergeRefs.ts
10435
- var import_type_guards38 = require("@wistia/type-guards");
10515
+ var import_type_guards39 = require("@wistia/type-guards");
10436
10516
  var mergeRefs = (refs) => (value) => {
10437
10517
  refs.forEach((ref) => {
10438
- if ((0, import_type_guards38.isFunction)(ref)) {
10518
+ if ((0, import_type_guards39.isFunction)(ref)) {
10439
10519
  ref(value);
10440
10520
  return;
10441
10521
  }
10442
- if ((0, import_type_guards38.isNotNil)(ref)) {
10522
+ if ((0, import_type_guards39.isNotNil)(ref)) {
10443
10523
  ref.current = value;
10444
10524
  }
10445
10525
  });
10446
10526
  };
10447
10527
 
10448
10528
  // src/components/SegmentedControl/SegmentedControlItem.tsx
10449
- var import_jsx_runtime243 = require("react/jsx-runtime");
10450
- var segmentedControlItemStyles = import_styled_components66.css`
10529
+ var import_jsx_runtime244 = require("react/jsx-runtime");
10530
+ var segmentedControlItemStyles = import_styled_components67.css`
10451
10531
  all: unset; /* ToggleGroupItem is a button element */
10452
10532
  align-items: center;
10453
10533
  border-radius: var(--wui-border-radius-rounded);
@@ -10506,7 +10586,7 @@ var segmentedControlItemStyles = import_styled_components66.css`
10506
10586
  }
10507
10587
  }
10508
10588
  `;
10509
- var StyledSegmentedControlItem = (0, import_styled_components66.default)(import_react_toggle_group2.Item)`
10589
+ var StyledSegmentedControlItem = (0, import_styled_components67.default)(import_react_toggle_group2.Item)`
10510
10590
  ${segmentedControlItemStyles}
10511
10591
  `;
10512
10592
  var SegmentedControlItem = (0, import_react48.forwardRef)(
@@ -10547,12 +10627,12 @@ var SegmentedControlItem = (0, import_react48.forwardRef)(
10547
10627
  resizeObserver.disconnect();
10548
10628
  };
10549
10629
  }, [selectedValue, setSelectedItemMeasurements, value]);
10550
- return /* @__PURE__ */ (0, import_jsx_runtime243.jsxs)(
10630
+ return /* @__PURE__ */ (0, import_jsx_runtime244.jsxs)(
10551
10631
  StyledSegmentedControlItem,
10552
10632
  {
10553
10633
  ref: combinedRef,
10554
- $hasLabel: (0, import_type_guards39.isNotNil)(label),
10555
- "aria-label": (0, import_type_guards39.isNotNil)(label) ? void 0 : ariaLabel,
10634
+ $hasLabel: (0, import_type_guards40.isNotNil)(label),
10635
+ "aria-label": (0, import_type_guards40.isNotNil)(label) ? void 0 : ariaLabel,
10556
10636
  disabled,
10557
10637
  onClick: handleClick,
10558
10638
  value,
@@ -10569,9 +10649,9 @@ SegmentedControlItem.displayName = "SegmentedControlItem";
10569
10649
  // src/components/Select/Select.tsx
10570
10650
  var import_react_select = require("@radix-ui/react-select");
10571
10651
  var import_react49 = require("react");
10572
- var import_styled_components67 = __toESM(require("styled-components"));
10573
- var import_jsx_runtime244 = require("react/jsx-runtime");
10574
- var StyledTrigger = (0, import_styled_components67.default)(import_react_select.Trigger)`
10652
+ var import_styled_components68 = __toESM(require("styled-components"));
10653
+ var import_jsx_runtime245 = require("react/jsx-runtime");
10654
+ var StyledTrigger = (0, import_styled_components68.default)(import_react_select.Trigger)`
10575
10655
  ${({ $colorScheme }) => getColorScheme($colorScheme)};
10576
10656
  --wui-select-color-bg: var(--wui-color-bg-surface);
10577
10657
  --wui-select-color-bg-disabled: var(--wui-color-bg-surface-disabled);
@@ -10619,7 +10699,7 @@ var StyledTrigger = (0, import_styled_components67.default)(import_react_select.
10619
10699
  background-color: var(--wui-color-bg-surface-disabled);
10620
10700
  }
10621
10701
  `;
10622
- var StyledContent3 = (0, import_styled_components67.default)(import_react_select.Content)`
10702
+ var StyledContent3 = (0, import_styled_components68.default)(import_react_select.Content)`
10623
10703
  --wui-select-content-border: var(--wui-color-border);
10624
10704
  --wui-select-content-bg: var(--wui-color-bg-surface);
10625
10705
  --wui-select-content-border-radius: var(--wui-border-radius-02);
@@ -10647,13 +10727,13 @@ var Select = (0, import_react49.forwardRef)(
10647
10727
  ...props
10648
10728
  }, forwardedRef) => {
10649
10729
  const responsiveFullWidth = useResponsiveProp(fullWidth);
10650
- return /* @__PURE__ */ (0, import_jsx_runtime244.jsxs)(
10730
+ return /* @__PURE__ */ (0, import_jsx_runtime245.jsxs)(
10651
10731
  import_react_select.Root,
10652
10732
  {
10653
10733
  ...props,
10654
10734
  onValueChange: onChange,
10655
10735
  children: [
10656
- /* @__PURE__ */ (0, import_jsx_runtime244.jsxs)(
10736
+ /* @__PURE__ */ (0, import_jsx_runtime245.jsxs)(
10657
10737
  StyledTrigger,
10658
10738
  {
10659
10739
  ref: forwardedRef,
@@ -10661,8 +10741,8 @@ var Select = (0, import_react49.forwardRef)(
10661
10741
  $fullWidth: responsiveFullWidth,
10662
10742
  ...props,
10663
10743
  children: [
10664
- /* @__PURE__ */ (0, import_jsx_runtime244.jsx)(import_react_select.Value, { placeholder }),
10665
- /* @__PURE__ */ (0, import_jsx_runtime244.jsx)(
10744
+ /* @__PURE__ */ (0, import_jsx_runtime245.jsx)(import_react_select.Value, { placeholder }),
10745
+ /* @__PURE__ */ (0, import_jsx_runtime245.jsx)(
10666
10746
  Icon,
10667
10747
  {
10668
10748
  size: "md",
@@ -10672,10 +10752,10 @@ var Select = (0, import_react49.forwardRef)(
10672
10752
  ]
10673
10753
  }
10674
10754
  ),
10675
- /* @__PURE__ */ (0, import_jsx_runtime244.jsx)(import_react_select.Portal, { children: /* @__PURE__ */ (0, import_jsx_runtime244.jsxs)(StyledContent3, { position: "popper", children: [
10676
- /* @__PURE__ */ (0, import_jsx_runtime244.jsx)(import_react_select.ScrollUpButton, { children: /* @__PURE__ */ (0, import_jsx_runtime244.jsx)(Icon, { type: "caret-up" }) }),
10677
- /* @__PURE__ */ (0, import_jsx_runtime244.jsx)(import_react_select.Viewport, { children }),
10678
- /* @__PURE__ */ (0, import_jsx_runtime244.jsx)(import_react_select.ScrollDownButton, { children: /* @__PURE__ */ (0, import_jsx_runtime244.jsx)(Icon, { type: "caret-down" }) })
10755
+ /* @__PURE__ */ (0, import_jsx_runtime245.jsx)(import_react_select.Portal, { children: /* @__PURE__ */ (0, import_jsx_runtime245.jsxs)(StyledContent3, { position: "popper", children: [
10756
+ /* @__PURE__ */ (0, import_jsx_runtime245.jsx)(import_react_select.ScrollUpButton, { children: /* @__PURE__ */ (0, import_jsx_runtime245.jsx)(Icon, { type: "caret-up" }) }),
10757
+ /* @__PURE__ */ (0, import_jsx_runtime245.jsx)(import_react_select.Viewport, { children }),
10758
+ /* @__PURE__ */ (0, import_jsx_runtime245.jsx)(import_react_select.ScrollDownButton, { children: /* @__PURE__ */ (0, import_jsx_runtime245.jsx)(Icon, { type: "caret-down" }) })
10679
10759
  ] }) })
10680
10760
  ]
10681
10761
  }
@@ -10687,9 +10767,9 @@ Select.displayName = "Select";
10687
10767
  // src/components/Select/SelectOption.tsx
10688
10768
  var import_react_select2 = require("@radix-ui/react-select");
10689
10769
  var import_react50 = require("react");
10690
- var import_styled_components68 = __toESM(require("styled-components"));
10691
- var import_jsx_runtime245 = require("react/jsx-runtime");
10692
- var StyledItem = (0, import_styled_components68.default)(import_react_select2.Item)`
10770
+ var import_styled_components69 = __toESM(require("styled-components"));
10771
+ var import_jsx_runtime246 = require("react/jsx-runtime");
10772
+ var StyledItem = (0, import_styled_components69.default)(import_react_select2.Item)`
10693
10773
  ${variantStyleMap2.body3};
10694
10774
  display: flex;
10695
10775
  padding: var(--wui-select-option-padding);
@@ -10712,25 +10792,25 @@ var StyledItem = (0, import_styled_components68.default)(import_react_select2.It
10712
10792
  background-color: transparent;
10713
10793
  }
10714
10794
  `;
10715
- var StyledIconContainer = import_styled_components68.default.span`
10795
+ var StyledIconContainer = import_styled_components69.default.span`
10716
10796
  width: 12px;
10717
10797
  `;
10718
10798
  var SelectOption = (0, import_react50.forwardRef)(
10719
10799
  ({ children, ...props }, forwardedRef) => {
10720
- return /* @__PURE__ */ (0, import_jsx_runtime245.jsxs)(
10800
+ return /* @__PURE__ */ (0, import_jsx_runtime246.jsxs)(
10721
10801
  StyledItem,
10722
10802
  {
10723
10803
  ...props,
10724
10804
  ref: forwardedRef,
10725
10805
  children: [
10726
- /* @__PURE__ */ (0, import_jsx_runtime245.jsx)(StyledIconContainer, { children: /* @__PURE__ */ (0, import_jsx_runtime245.jsx)(import_react_select2.ItemIndicator, { children: /* @__PURE__ */ (0, import_jsx_runtime245.jsx)(
10806
+ /* @__PURE__ */ (0, import_jsx_runtime246.jsx)(StyledIconContainer, { children: /* @__PURE__ */ (0, import_jsx_runtime246.jsx)(import_react_select2.ItemIndicator, { children: /* @__PURE__ */ (0, import_jsx_runtime246.jsx)(
10727
10807
  Icon,
10728
10808
  {
10729
10809
  size: "sm",
10730
10810
  type: "checkmark"
10731
10811
  }
10732
10812
  ) }) }),
10733
- /* @__PURE__ */ (0, import_jsx_runtime245.jsx)(import_react_select2.ItemText, { children })
10813
+ /* @__PURE__ */ (0, import_jsx_runtime246.jsx)(import_react_select2.ItemText, { children })
10734
10814
  ]
10735
10815
  }
10736
10816
  );
@@ -10740,14 +10820,14 @@ SelectOption.displayName = "Option";
10740
10820
 
10741
10821
  // src/components/Select/SelectOptionGroup.tsx
10742
10822
  var import_react_select3 = require("@radix-ui/react-select");
10743
- var import_styled_components69 = __toESM(require("styled-components"));
10744
- var import_jsx_runtime246 = require("react/jsx-runtime");
10745
- var StyledLabel4 = (0, import_styled_components69.default)(import_react_select3.Label)`
10823
+ var import_styled_components70 = __toESM(require("styled-components"));
10824
+ var import_jsx_runtime247 = require("react/jsx-runtime");
10825
+ var StyledLabel4 = (0, import_styled_components70.default)(import_react_select3.Label)`
10746
10826
  padding: var(--wui-select-option-padding);
10747
10827
  `;
10748
10828
  var SelectOptionGroup = ({ children, label, ...props }) => {
10749
- return /* @__PURE__ */ (0, import_jsx_runtime246.jsxs)(import_react_select3.Group, { ...props, children: [
10750
- /* @__PURE__ */ (0, import_jsx_runtime246.jsx)(StyledLabel4, { children: /* @__PURE__ */ (0, import_jsx_runtime246.jsx)(
10829
+ return /* @__PURE__ */ (0, import_jsx_runtime247.jsxs)(import_react_select3.Group, { ...props, children: [
10830
+ /* @__PURE__ */ (0, import_jsx_runtime247.jsx)(StyledLabel4, { children: /* @__PURE__ */ (0, import_jsx_runtime247.jsx)(
10751
10831
  Text,
10752
10832
  {
10753
10833
  prominence: "secondary",
@@ -10761,19 +10841,19 @@ var SelectOptionGroup = ({ children, label, ...props }) => {
10761
10841
 
10762
10842
  // src/components/Table/Table.tsx
10763
10843
  var import_react52 = require("react");
10764
- var import_styled_components70 = __toESM(require("styled-components"));
10844
+ var import_styled_components71 = __toESM(require("styled-components"));
10765
10845
 
10766
10846
  // src/components/Table/TableContext.tsx
10767
10847
  var import_react51 = __toESM(require("react"));
10768
10848
  var TableContext = import_react51.default.createContext({ divided: false });
10769
10849
 
10770
10850
  // src/components/Table/Table.tsx
10771
- var import_jsx_runtime247 = require("react/jsx-runtime");
10772
- var StyledTable = import_styled_components70.default.table`
10851
+ var import_jsx_runtime248 = require("react/jsx-runtime");
10852
+ var StyledTable = import_styled_components71.default.table`
10773
10853
  width: 100%;
10774
10854
  border-collapse: collapse;
10775
10855
 
10776
- ${({ $striped }) => $striped && import_styled_components70.css`
10856
+ ${({ $striped }) => $striped && import_styled_components71.css`
10777
10857
  tbody tr:nth-child(even) {
10778
10858
  background-color: var(--wui-color-bg-surface-secondary);
10779
10859
  }
@@ -10786,7 +10866,7 @@ var Table = ({
10786
10866
  ...props
10787
10867
  }) => {
10788
10868
  const contextValue = (0, import_react52.useMemo)(() => ({ divided }), [divided]);
10789
- return /* @__PURE__ */ (0, import_jsx_runtime247.jsx)(TableContext.Provider, { value: contextValue, children: /* @__PURE__ */ (0, import_jsx_runtime247.jsx)(
10869
+ return /* @__PURE__ */ (0, import_jsx_runtime248.jsx)(TableContext.Provider, { value: contextValue, children: /* @__PURE__ */ (0, import_jsx_runtime248.jsx)(
10790
10870
  StyledTable,
10791
10871
  {
10792
10872
  $striped: striped,
@@ -10797,35 +10877,35 @@ var Table = ({
10797
10877
  };
10798
10878
 
10799
10879
  // src/components/Table/TableBody.tsx
10800
- var import_styled_components71 = __toESM(require("styled-components"));
10880
+ var import_styled_components72 = __toESM(require("styled-components"));
10801
10881
 
10802
10882
  // src/components/Table/TableSectionContext.ts
10803
10883
  var import_react53 = require("react");
10804
10884
  var TableSectionContext = (0, import_react53.createContext)(null);
10805
10885
 
10806
10886
  // src/components/Table/TableBody.tsx
10807
- var import_jsx_runtime248 = require("react/jsx-runtime");
10808
- var StyledTbody = import_styled_components71.default.tbody``;
10887
+ var import_jsx_runtime249 = require("react/jsx-runtime");
10888
+ var StyledTbody = import_styled_components72.default.tbody``;
10809
10889
  var TableBody = ({ children, ...props }) => {
10810
- return /* @__PURE__ */ (0, import_jsx_runtime248.jsx)(TableSectionContext.Provider, { value: "body", children: /* @__PURE__ */ (0, import_jsx_runtime248.jsx)(StyledTbody, { ...props, children }) });
10890
+ return /* @__PURE__ */ (0, import_jsx_runtime249.jsx)(TableSectionContext.Provider, { value: "body", children: /* @__PURE__ */ (0, import_jsx_runtime249.jsx)(StyledTbody, { ...props, children }) });
10811
10891
  };
10812
10892
 
10813
10893
  // src/components/Table/TableCell.tsx
10814
10894
  var import_react54 = require("react");
10815
- var import_styled_components72 = __toESM(require("styled-components"));
10816
- var import_jsx_runtime249 = require("react/jsx-runtime");
10817
- var sharedStyles = import_styled_components72.css`
10895
+ var import_styled_components73 = __toESM(require("styled-components"));
10896
+ var import_jsx_runtime250 = require("react/jsx-runtime");
10897
+ var sharedStyles = import_styled_components73.css`
10818
10898
  color: var(--wui-color-text);
10819
10899
  padding: var(--wui-space-02);
10820
10900
  text-align: left;
10821
10901
  `;
10822
- var StyledTh = import_styled_components72.default.th`
10902
+ var StyledTh = import_styled_components73.default.th`
10823
10903
  ${sharedStyles}
10824
10904
  font-size: var(--wui-typography-body-4-size);
10825
10905
  font-weight: var(--wui-typography-weight-label-bold);
10826
10906
  line-height: var(--wui-typography-body-4-line-height);
10827
10907
  `;
10828
- var StyledTd = import_styled_components72.default.td`
10908
+ var StyledTd = import_styled_components73.default.td`
10829
10909
  ${sharedStyles}
10830
10910
  font-size: var(--wui-typography-body-2-size);
10831
10911
  font-weight: var(--wui-typography-body-2-weight);
@@ -10834,37 +10914,37 @@ var StyledTd = import_styled_components72.default.td`
10834
10914
  var TableCell = ({ children, ...props }) => {
10835
10915
  const section = (0, import_react54.useContext)(TableSectionContext);
10836
10916
  if (section === "head") {
10837
- return /* @__PURE__ */ (0, import_jsx_runtime249.jsx)(StyledTh, { ...props, children });
10917
+ return /* @__PURE__ */ (0, import_jsx_runtime250.jsx)(StyledTh, { ...props, children });
10838
10918
  }
10839
- return /* @__PURE__ */ (0, import_jsx_runtime249.jsx)(StyledTd, { ...props, children });
10919
+ return /* @__PURE__ */ (0, import_jsx_runtime250.jsx)(StyledTd, { ...props, children });
10840
10920
  };
10841
10921
 
10842
10922
  // src/components/Table/TableFooter.tsx
10843
- var import_styled_components73 = __toESM(require("styled-components"));
10844
- var import_jsx_runtime250 = require("react/jsx-runtime");
10845
- var StyledTfoot = import_styled_components73.default.tfoot``;
10923
+ var import_styled_components74 = __toESM(require("styled-components"));
10924
+ var import_jsx_runtime251 = require("react/jsx-runtime");
10925
+ var StyledTfoot = import_styled_components74.default.tfoot``;
10846
10926
  var TableFooter = ({ children, ...props }) => {
10847
- return /* @__PURE__ */ (0, import_jsx_runtime250.jsx)(TableSectionContext.Provider, { value: "footer", children: /* @__PURE__ */ (0, import_jsx_runtime250.jsx)(StyledTfoot, { ...props, children }) });
10927
+ return /* @__PURE__ */ (0, import_jsx_runtime251.jsx)(TableSectionContext.Provider, { value: "footer", children: /* @__PURE__ */ (0, import_jsx_runtime251.jsx)(StyledTfoot, { ...props, children }) });
10848
10928
  };
10849
10929
 
10850
10930
  // src/components/Table/TableHead.tsx
10851
- var import_styled_components74 = __toESM(require("styled-components"));
10852
- var import_jsx_runtime251 = require("react/jsx-runtime");
10853
- var StyledThead = import_styled_components74.default.thead``;
10931
+ var import_styled_components75 = __toESM(require("styled-components"));
10932
+ var import_jsx_runtime252 = require("react/jsx-runtime");
10933
+ var StyledThead = import_styled_components75.default.thead``;
10854
10934
  var TableHead = ({ children, ...props }) => {
10855
- return /* @__PURE__ */ (0, import_jsx_runtime251.jsx)(TableSectionContext.Provider, { value: "head", children: /* @__PURE__ */ (0, import_jsx_runtime251.jsx)(StyledThead, { ...props, children }) });
10935
+ return /* @__PURE__ */ (0, import_jsx_runtime252.jsx)(TableSectionContext.Provider, { value: "head", children: /* @__PURE__ */ (0, import_jsx_runtime252.jsx)(StyledThead, { ...props, children }) });
10856
10936
  };
10857
10937
 
10858
10938
  // src/components/Table/TableRow.tsx
10859
10939
  var import_react55 = require("react");
10860
- var import_styled_components75 = __toESM(require("styled-components"));
10861
- var import_jsx_runtime252 = require("react/jsx-runtime");
10862
- var StyledTr = import_styled_components75.default.tr`
10940
+ var import_styled_components76 = __toESM(require("styled-components"));
10941
+ var import_jsx_runtime253 = require("react/jsx-runtime");
10942
+ var StyledTr = import_styled_components76.default.tr`
10863
10943
  ${({ $divided }) => $divided && `border-bottom: 1px solid var(--wui-color-border);`}
10864
10944
  `;
10865
10945
  var TableRow = ({ children, ...props }) => {
10866
10946
  const { divided = false } = (0, import_react55.useContext)(TableContext);
10867
- return /* @__PURE__ */ (0, import_jsx_runtime252.jsx)(
10947
+ return /* @__PURE__ */ (0, import_jsx_runtime253.jsx)(
10868
10948
  StyledTr,
10869
10949
  {
10870
10950
  $divided: divided,
@@ -10877,19 +10957,19 @@ var TableRow = ({ children, ...props }) => {
10877
10957
  // src/components/Tabs/Tabs.tsx
10878
10958
  var import_react60 = require("react");
10879
10959
  var import_react_tabs4 = require("@radix-ui/react-tabs");
10880
- var import_type_guards41 = require("@wistia/type-guards");
10881
- var import_styled_components80 = __toESM(require("styled-components"));
10960
+ var import_type_guards42 = require("@wistia/type-guards");
10961
+ var import_styled_components81 = __toESM(require("styled-components"));
10882
10962
 
10883
10963
  // src/components/Tabs/TabPanel.tsx
10884
- var import_styled_components76 = __toESM(require("styled-components"));
10964
+ var import_styled_components77 = __toESM(require("styled-components"));
10885
10965
  var import_react_tabs = require("@radix-ui/react-tabs");
10886
- var import_jsx_runtime253 = require("react/jsx-runtime");
10887
- var StyledTabPanel = (0, import_styled_components76.default)(import_react_tabs.Content)`
10966
+ var import_jsx_runtime254 = require("react/jsx-runtime");
10967
+ var StyledTabPanel = (0, import_styled_components77.default)(import_react_tabs.Content)`
10888
10968
  display: flex;
10889
10969
  flex-direction: column;
10890
10970
  `;
10891
10971
  var TabPanel = ({ children, value, ...props }) => {
10892
- return /* @__PURE__ */ (0, import_jsx_runtime253.jsx)(
10972
+ return /* @__PURE__ */ (0, import_jsx_runtime254.jsx)(
10893
10973
  StyledTabPanel,
10894
10974
  {
10895
10975
  value,
@@ -10901,10 +10981,10 @@ var TabPanel = ({ children, value, ...props }) => {
10901
10981
  TabPanel.displayName = "TabPanel";
10902
10982
 
10903
10983
  // src/components/Tabs/TabList.tsx
10904
- var import_styled_components77 = __toESM(require("styled-components"));
10984
+ var import_styled_components78 = __toESM(require("styled-components"));
10905
10985
  var import_react_tabs2 = require("@radix-ui/react-tabs");
10906
- var import_jsx_runtime254 = require("react/jsx-runtime");
10907
- var StyledTabList = (0, import_styled_components77.default)(import_react_tabs2.List)`
10986
+ var import_jsx_runtime255 = require("react/jsx-runtime");
10987
+ var StyledTabList = (0, import_styled_components78.default)(import_react_tabs2.List)`
10908
10988
  ${segmentedControlStyles}
10909
10989
 
10910
10990
  margin-bottom: var(--wui-space-04);
@@ -10917,7 +10997,7 @@ var TabList = ({
10917
10997
  ariaLabel,
10918
10998
  ...props
10919
10999
  }) => {
10920
- return /* @__PURE__ */ (0, import_jsx_runtime254.jsx)(
11000
+ return /* @__PURE__ */ (0, import_jsx_runtime255.jsx)(
10921
11001
  StyledTabList,
10922
11002
  {
10923
11003
  $fullWidth: fullWidth,
@@ -10931,9 +11011,9 @@ TabList.displayName = "TabList";
10931
11011
 
10932
11012
  // src/components/Tabs/TabItem.tsx
10933
11013
  var import_react57 = require("react");
10934
- var import_styled_components78 = __toESM(require("styled-components"));
11014
+ var import_styled_components79 = __toESM(require("styled-components"));
10935
11015
  var import_react_tabs3 = require("@radix-ui/react-tabs");
10936
- var import_type_guards40 = require("@wistia/type-guards");
11016
+ var import_type_guards41 = require("@wistia/type-guards");
10937
11017
 
10938
11018
  // src/components/Tabs/useTabsValue.tsx
10939
11019
  var import_react56 = require("react");
@@ -10948,8 +11028,8 @@ var useTabsValue = () => {
10948
11028
  };
10949
11029
 
10950
11030
  // src/components/Tabs/TabItem.tsx
10951
- var import_jsx_runtime255 = require("react/jsx-runtime");
10952
- var StyledTabItem = (0, import_styled_components78.default)(import_react_tabs3.Trigger)`
11031
+ var import_jsx_runtime256 = require("react/jsx-runtime");
11032
+ var StyledTabItem = (0, import_styled_components79.default)(import_react_tabs3.Trigger)`
10953
11033
  ${segmentedControlItemStyles}
10954
11034
 
10955
11035
  &:focus-visible {
@@ -10987,12 +11067,12 @@ var TabItem = (0, import_react57.forwardRef)(
10987
11067
  resizeObserver.disconnect();
10988
11068
  };
10989
11069
  }, [selectedValue, setSelectedItemMeasurements, value]);
10990
- return /* @__PURE__ */ (0, import_jsx_runtime255.jsxs)(
11070
+ return /* @__PURE__ */ (0, import_jsx_runtime256.jsxs)(
10991
11071
  StyledTabItem,
10992
11072
  {
10993
11073
  ref: combinedRef,
10994
- $hasLabel: (0, import_type_guards40.isNotNil)(label),
10995
- "aria-label": (0, import_type_guards40.isNotNil)(label) ? void 0 : ariaLabel,
11074
+ $hasLabel: (0, import_type_guards41.isNotNil)(label),
11075
+ "aria-label": (0, import_type_guards41.isNotNil)(label) ? void 0 : ariaLabel,
10996
11076
  disabled,
10997
11077
  value,
10998
11078
  children: [
@@ -11029,9 +11109,9 @@ var extractTabItems = (children) => {
11029
11109
 
11030
11110
  // src/components/Tabs/SelectedItemIndicator.tsx
11031
11111
  var import_react59 = require("react");
11032
- var import_styled_components79 = __toESM(require("styled-components"));
11033
- var import_jsx_runtime256 = require("react/jsx-runtime");
11034
- var TabsSelectedItemIndicatorDiv = (0, import_styled_components79.default)(SelectedItemIndicatorDiv)`
11112
+ var import_styled_components80 = __toESM(require("styled-components"));
11113
+ var import_jsx_runtime257 = require("react/jsx-runtime");
11114
+ var TabsSelectedItemIndicatorDiv = (0, import_styled_components80.default)(SelectedItemIndicatorDiv)`
11035
11115
  &:has(~ ${StyledTabItem}:focus-visible) {
11036
11116
  outline: 2px solid var(--wui-color-focus-ring);
11037
11117
  }
@@ -11050,7 +11130,7 @@ var SelectedItemIndicator2 = () => {
11050
11130
  if (selectedValue == null) {
11051
11131
  return null;
11052
11132
  }
11053
- return /* @__PURE__ */ (0, import_jsx_runtime256.jsx)(
11133
+ return /* @__PURE__ */ (0, import_jsx_runtime257.jsx)(
11054
11134
  TabsSelectedItemIndicatorDiv,
11055
11135
  {
11056
11136
  style: {
@@ -11063,19 +11143,19 @@ var SelectedItemIndicator2 = () => {
11063
11143
  };
11064
11144
 
11065
11145
  // src/components/Tabs/Tabs.tsx
11066
- var import_jsx_runtime257 = require("react/jsx-runtime");
11067
- var TabsContainer = import_styled_components80.default.div`
11146
+ var import_jsx_runtime258 = require("react/jsx-runtime");
11147
+ var TabsContainer = import_styled_components81.default.div`
11068
11148
  display: flex;
11069
11149
  flex-direction: column;
11070
11150
  height: ${({ $stickyHeaders }) => $stickyHeaders ? "100%" : "auto"};
11071
11151
  overflow: ${({ $stickyHeaders }) => $stickyHeaders ? "hidden" : "visible"};
11072
11152
  `;
11073
- var StickyTabContent = import_styled_components80.default.div`
11153
+ var StickyTabContent = import_styled_components81.default.div`
11074
11154
  flex: ${({ $stickyHeaders }) => $stickyHeaders ? "1" : "initial"};
11075
11155
  overflow-y: ${({ $stickyHeaders }) => $stickyHeaders ? "auto" : "visible"};
11076
11156
  overflow-x: ${({ $stickyHeaders }) => $stickyHeaders ? "hidden" : "visible"};
11077
11157
  `;
11078
- var StyledTabsRoot = (0, import_styled_components80.default)(import_react_tabs4.Root)`
11158
+ var StyledTabsRoot = (0, import_styled_components81.default)(import_react_tabs4.Root)`
11079
11159
  display: flex;
11080
11160
  flex-direction: column;
11081
11161
  height: ${({ $stickyHeaders }) => $stickyHeaders ? "100%" : "auto"};
@@ -11098,7 +11178,7 @@ var Tabs = (0, import_react60.forwardRef)(
11098
11178
  onValueChange: setInternalSelectedValue
11099
11179
  } : { value: selectedValue, onValueChange: onSelectedValueChange };
11100
11180
  const currentValue = defaultSelectedValue !== void 0 ? internalSelectedValue : selectedValue;
11101
- return /* @__PURE__ */ (0, import_jsx_runtime257.jsx)(TabsContainer, { $stickyHeaders: stickyHeaders, children: /* @__PURE__ */ (0, import_jsx_runtime257.jsx)(
11181
+ return /* @__PURE__ */ (0, import_jsx_runtime258.jsx)(TabsContainer, { $stickyHeaders: stickyHeaders, children: /* @__PURE__ */ (0, import_jsx_runtime258.jsx)(
11102
11182
  StyledTabsRoot,
11103
11183
  {
11104
11184
  ref,
@@ -11106,14 +11186,14 @@ var Tabs = (0, import_react60.forwardRef)(
11106
11186
  activationMode: "automatic",
11107
11187
  ...otherProps,
11108
11188
  ...modeProps,
11109
- children: /* @__PURE__ */ (0, import_jsx_runtime257.jsx)(TabsValueProvider, { value: currentValue, children: /* @__PURE__ */ (0, import_jsx_runtime257.jsxs)(SelectedItemMeasurementsProvider, { children: [
11110
- /* @__PURE__ */ (0, import_jsx_runtime257.jsxs)(
11189
+ children: /* @__PURE__ */ (0, import_jsx_runtime258.jsx)(TabsValueProvider, { value: currentValue, children: /* @__PURE__ */ (0, import_jsx_runtime258.jsxs)(SelectedItemMeasurementsProvider, { children: [
11190
+ /* @__PURE__ */ (0, import_jsx_runtime258.jsxs)(
11111
11191
  TabList,
11112
11192
  {
11113
11193
  ariaLabel,
11114
11194
  fullWidth,
11115
11195
  children: [
11116
- /* @__PURE__ */ (0, import_jsx_runtime257.jsx)(SelectedItemIndicator2, {}),
11196
+ /* @__PURE__ */ (0, import_jsx_runtime258.jsx)(SelectedItemIndicator2, {}),
11117
11197
  tabItems.map((tab) => {
11118
11198
  const {
11119
11199
  value,
@@ -11122,8 +11202,8 @@ var Tabs = (0, import_react60.forwardRef)(
11122
11202
  label,
11123
11203
  "aria-label": ariaLabelForTab
11124
11204
  } = tab.props;
11125
- if ((0, import_type_guards41.isNil)(icon)) {
11126
- return /* @__PURE__ */ (0, import_jsx_runtime257.jsx)(
11205
+ if ((0, import_type_guards42.isNil)(icon)) {
11206
+ return /* @__PURE__ */ (0, import_jsx_runtime258.jsx)(
11127
11207
  TabItem,
11128
11208
  {
11129
11209
  disabled,
@@ -11133,8 +11213,8 @@ var Tabs = (0, import_react60.forwardRef)(
11133
11213
  value
11134
11214
  );
11135
11215
  }
11136
- if ((0, import_type_guards41.isNotNil)(label)) {
11137
- return /* @__PURE__ */ (0, import_jsx_runtime257.jsx)(
11216
+ if ((0, import_type_guards42.isNotNil)(label)) {
11217
+ return /* @__PURE__ */ (0, import_jsx_runtime258.jsx)(
11138
11218
  TabItem,
11139
11219
  {
11140
11220
  disabled,
@@ -11145,8 +11225,8 @@ var Tabs = (0, import_react60.forwardRef)(
11145
11225
  value
11146
11226
  );
11147
11227
  }
11148
- if ((0, import_type_guards41.isNotNil)(ariaLabelForTab)) {
11149
- return /* @__PURE__ */ (0, import_jsx_runtime257.jsx)(
11228
+ if ((0, import_type_guards42.isNotNil)(ariaLabelForTab)) {
11229
+ return /* @__PURE__ */ (0, import_jsx_runtime258.jsx)(
11150
11230
  TabItem,
11151
11231
  {
11152
11232
  "aria-label": ariaLabelForTab,
@@ -11162,7 +11242,7 @@ var Tabs = (0, import_react60.forwardRef)(
11162
11242
  ]
11163
11243
  }
11164
11244
  ),
11165
- /* @__PURE__ */ (0, import_jsx_runtime257.jsx)(StickyTabContent, { $stickyHeaders: stickyHeaders, children: tabItems.map((tab) => /* @__PURE__ */ (0, import_jsx_runtime257.jsx)(
11245
+ /* @__PURE__ */ (0, import_jsx_runtime258.jsx)(StickyTabContent, { $stickyHeaders: stickyHeaders, children: tabItems.map((tab) => /* @__PURE__ */ (0, import_jsx_runtime258.jsx)(
11166
11246
  TabPanel,
11167
11247
  {
11168
11248
  value: tab.props.value,
@@ -11179,18 +11259,18 @@ Tabs.displayName = "Tabs";
11179
11259
 
11180
11260
  // src/components/Tabs/Tab.tsx
11181
11261
  var import_react61 = require("react");
11182
- var import_jsx_runtime258 = require("react/jsx-runtime");
11262
+ var import_jsx_runtime259 = require("react/jsx-runtime");
11183
11263
  var Tab = (0, import_react61.forwardRef)(({ children }, ref) => {
11184
- return /* @__PURE__ */ (0, import_jsx_runtime258.jsx)("div", { ref, children });
11264
+ return /* @__PURE__ */ (0, import_jsx_runtime259.jsx)("div", { ref, children });
11185
11265
  });
11186
11266
  Tab.displayName = "Tab";
11187
11267
 
11188
11268
  // src/components/Tag/Tag.tsx
11189
11269
  var import_react62 = require("react");
11190
- var import_styled_components81 = __toESM(require("styled-components"));
11191
- var import_type_guards42 = require("@wistia/type-guards");
11192
- var import_jsx_runtime259 = require("react/jsx-runtime");
11193
- var TagLabel = import_styled_components81.default.a`
11270
+ var import_styled_components82 = __toESM(require("styled-components"));
11271
+ var import_type_guards43 = require("@wistia/type-guards");
11272
+ var import_jsx_runtime260 = require("react/jsx-runtime");
11273
+ var TagLabel = import_styled_components82.default.a`
11194
11274
  ${({ $colorScheme }) => getColorScheme($colorScheme)};
11195
11275
  font-size: var(--wui-typography-label-4-size);
11196
11276
  font-weight: var(--wui-typography-label-4-weight);
@@ -11218,14 +11298,14 @@ var TagLabel = import_styled_components81.default.a`
11218
11298
  box-shadow: inset 0 0 0 2px var(--wui-color-border-secondary);
11219
11299
  }
11220
11300
  `;
11221
- var TagDivider = import_styled_components81.default.div`
11301
+ var TagDivider = import_styled_components82.default.div`
11222
11302
  ${({ $colorScheme }) => getColorScheme($colorScheme)};
11223
11303
  border-left: 1px solid var(--wui-color-border);
11224
11304
  display: flex;
11225
11305
  height: 14px;
11226
11306
  width: 1px;
11227
11307
  `;
11228
- var StyledRemoveButton = import_styled_components81.default.button`
11308
+ var StyledRemoveButton = import_styled_components82.default.button`
11229
11309
  ${({ $colorScheme }) => getColorScheme($colorScheme)};
11230
11310
  all: unset;
11231
11311
  cursor: pointer;
@@ -11253,7 +11333,7 @@ var StyledRemoveButton = import_styled_components81.default.button`
11253
11333
  box-shadow: inset 0 0 0 2px var(--wui-color-border-secondary);
11254
11334
  }
11255
11335
  `;
11256
- var StyledTag = import_styled_components81.default.div`
11336
+ var StyledTag = import_styled_components82.default.div`
11257
11337
  ${({ $colorScheme }) => getColorScheme($colorScheme)};
11258
11338
  align-items: center;
11259
11339
  background-color: var(--wui-color-bg-surface-secondary);
@@ -11266,31 +11346,31 @@ var StyledTag = import_styled_components81.default.div`
11266
11346
  }
11267
11347
  `;
11268
11348
  var RemoveButton = ({ onClickRemove, onClickRemoveLabel, colorScheme }) => {
11269
- if ((0, import_type_guards42.isNil)(onClickRemove)) {
11349
+ if ((0, import_type_guards43.isNil)(onClickRemove)) {
11270
11350
  return null;
11271
11351
  }
11272
- if ((0, import_type_guards42.isNil)(onClickRemoveLabel)) {
11352
+ if ((0, import_type_guards43.isNil)(onClickRemoveLabel)) {
11273
11353
  throw new Error(
11274
11354
  "for accessibility, onClickRemoveLabel must be provided if onClickRemove is provided"
11275
11355
  );
11276
11356
  }
11277
- return /* @__PURE__ */ (0, import_jsx_runtime259.jsxs)(import_jsx_runtime259.Fragment, { children: [
11278
- /* @__PURE__ */ (0, import_jsx_runtime259.jsx)(TagDivider, { $colorScheme: colorScheme }),
11279
- /* @__PURE__ */ (0, import_jsx_runtime259.jsxs)(
11357
+ return /* @__PURE__ */ (0, import_jsx_runtime260.jsxs)(import_jsx_runtime260.Fragment, { children: [
11358
+ /* @__PURE__ */ (0, import_jsx_runtime260.jsx)(TagDivider, { $colorScheme: colorScheme }),
11359
+ /* @__PURE__ */ (0, import_jsx_runtime260.jsxs)(
11280
11360
  StyledRemoveButton,
11281
11361
  {
11282
11362
  $colorScheme: colorScheme,
11283
11363
  onClick: onClickRemove,
11284
11364
  type: "button",
11285
11365
  children: [
11286
- /* @__PURE__ */ (0, import_jsx_runtime259.jsx)(
11366
+ /* @__PURE__ */ (0, import_jsx_runtime260.jsx)(
11287
11367
  Icon,
11288
11368
  {
11289
11369
  size: "sm",
11290
11370
  type: "close"
11291
11371
  }
11292
11372
  ),
11293
- /* @__PURE__ */ (0, import_jsx_runtime259.jsx)(ScreenReaderOnly, { children: onClickRemoveLabel })
11373
+ /* @__PURE__ */ (0, import_jsx_runtime260.jsx)(ScreenReaderOnly, { children: onClickRemoveLabel })
11294
11374
  ]
11295
11375
  }
11296
11376
  )
@@ -11298,15 +11378,15 @@ var RemoveButton = ({ onClickRemove, onClickRemoveLabel, colorScheme }) => {
11298
11378
  };
11299
11379
  var Tag = (0, import_react62.forwardRef)(
11300
11380
  ({ onClickRemove, colorScheme = "inherit", href, label, onClickRemoveLabel, ...otherProps }, ref) => {
11301
- const labelProps = (0, import_type_guards42.isNotNil)(href) && (0, import_type_guards42.isNonEmptyString)(href) ? { href, as: "a" } : { as: "span" };
11302
- return /* @__PURE__ */ (0, import_jsx_runtime259.jsxs)(
11381
+ const labelProps = (0, import_type_guards43.isNotNil)(href) && (0, import_type_guards43.isNonEmptyString)(href) ? { href, as: "a" } : { as: "span" };
11382
+ return /* @__PURE__ */ (0, import_jsx_runtime260.jsxs)(
11303
11383
  StyledTag,
11304
11384
  {
11305
11385
  ref,
11306
11386
  $colorScheme: colorScheme,
11307
11387
  ...otherProps,
11308
11388
  children: [
11309
- /* @__PURE__ */ (0, import_jsx_runtime259.jsx)(
11389
+ /* @__PURE__ */ (0, import_jsx_runtime260.jsx)(
11310
11390
  TagLabel,
11311
11391
  {
11312
11392
  ...labelProps,
@@ -11314,7 +11394,7 @@ var Tag = (0, import_react62.forwardRef)(
11314
11394
  children: label
11315
11395
  }
11316
11396
  ),
11317
- /* @__PURE__ */ (0, import_jsx_runtime259.jsx)(
11397
+ /* @__PURE__ */ (0, import_jsx_runtime260.jsx)(
11318
11398
  RemoveButton,
11319
11399
  {
11320
11400
  colorScheme,
@@ -11330,26 +11410,26 @@ var Tag = (0, import_react62.forwardRef)(
11330
11410
  Tag.displayName = "Tag";
11331
11411
 
11332
11412
  // src/components/WistiaLogo/WistiaLogo.tsx
11333
- var import_styled_components82 = __toESM(require("styled-components"));
11334
- var import_type_guards43 = require("@wistia/type-guards");
11335
- var import_jsx_runtime260 = require("react/jsx-runtime");
11413
+ var import_styled_components83 = __toESM(require("styled-components"));
11414
+ var import_type_guards44 = require("@wistia/type-guards");
11415
+ var import_jsx_runtime261 = require("react/jsx-runtime");
11336
11416
  var renderBrandmark = (brandmarkColor, iconOnly) => {
11337
11417
  if (iconOnly) {
11338
- return /* @__PURE__ */ (0, import_jsx_runtime260.jsx)(
11418
+ return /* @__PURE__ */ (0, import_jsx_runtime261.jsx)(
11339
11419
  "g",
11340
11420
  {
11341
11421
  "data-testid": "ui-wistia-logo-brandmark",
11342
11422
  fill: brandmarkColor,
11343
- children: /* @__PURE__ */ (0, import_jsx_runtime260.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" })
11423
+ children: /* @__PURE__ */ (0, import_jsx_runtime261.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" })
11344
11424
  }
11345
11425
  );
11346
11426
  }
11347
- return /* @__PURE__ */ (0, import_jsx_runtime260.jsx)(
11427
+ return /* @__PURE__ */ (0, import_jsx_runtime261.jsx)(
11348
11428
  "g",
11349
11429
  {
11350
11430
  "data-testid": "ui-wistia-logo-brandmark",
11351
11431
  fill: brandmarkColor,
11352
- children: /* @__PURE__ */ (0, import_jsx_runtime260.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" })
11432
+ children: /* @__PURE__ */ (0, import_jsx_runtime261.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" })
11353
11433
  }
11354
11434
  );
11355
11435
  };
@@ -11357,12 +11437,12 @@ var renderLogotype = (logotypeColor, iconOnly) => {
11357
11437
  if (iconOnly) {
11358
11438
  return null;
11359
11439
  }
11360
- return /* @__PURE__ */ (0, import_jsx_runtime260.jsx)(
11440
+ return /* @__PURE__ */ (0, import_jsx_runtime261.jsx)(
11361
11441
  "g",
11362
11442
  {
11363
11443
  "data-testid": "ui-wistia-logo-logotype",
11364
11444
  fill: logotypeColor,
11365
- children: /* @__PURE__ */ (0, import_jsx_runtime260.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" })
11445
+ children: /* @__PURE__ */ (0, import_jsx_runtime261.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" })
11366
11446
  }
11367
11447
  );
11368
11448
  };
@@ -11372,7 +11452,7 @@ var computedViewBox = (iconOnly) => {
11372
11452
  }
11373
11453
  return "0 0 144 31.47";
11374
11454
  };
11375
- var WistiaLogoComponent = import_styled_components82.default.svg`
11455
+ var WistiaLogoComponent = import_styled_components83.default.svg`
11376
11456
  height: ${({ height }) => `${height}px`};
11377
11457
 
11378
11458
  /* ensure it will always fit on mobile */
@@ -11388,12 +11468,12 @@ var WistiaLogoComponent = import_styled_components82.default.svg`
11388
11468
  ${({ $opticallyCentered, $iconOnly }) => {
11389
11469
  if ($opticallyCentered) {
11390
11470
  if ($iconOnly) {
11391
- return import_styled_components82.css`
11471
+ return import_styled_components83.css`
11392
11472
  aspect-ratio: 1;
11393
11473
  padding: 11.85% 3.12% 13.91%;
11394
11474
  `;
11395
11475
  }
11396
- return import_styled_components82.css`
11476
+ return import_styled_components83.css`
11397
11477
  aspect-ratio: 127 / 32;
11398
11478
  `;
11399
11479
  }
@@ -11430,7 +11510,7 @@ var WistiaLogo = ({
11430
11510
  };
11431
11511
  const brandmarkColor = VARIANT_COLORS[variant].brandmark;
11432
11512
  const logotypeColor = VARIANT_COLORS[variant].logotype;
11433
- const Logo = /* @__PURE__ */ (0, import_jsx_runtime260.jsxs)(
11513
+ const Logo = /* @__PURE__ */ (0, import_jsx_runtime261.jsxs)(
11434
11514
  WistiaLogoComponent,
11435
11515
  {
11436
11516
  $hoverColor: hoverColor,
@@ -11443,14 +11523,14 @@ var WistiaLogo = ({
11443
11523
  xmlns: "http://www.w3.org/2000/svg",
11444
11524
  ...otherProps,
11445
11525
  children: [
11446
- /* @__PURE__ */ (0, import_jsx_runtime260.jsx)("title", { children: title }),
11447
- (0, import_type_guards43.isNotNil)(description) ? /* @__PURE__ */ (0, import_jsx_runtime260.jsx)("desc", { children: description }) : null,
11526
+ /* @__PURE__ */ (0, import_jsx_runtime261.jsx)("title", { children: title }),
11527
+ (0, import_type_guards44.isNotNil)(description) ? /* @__PURE__ */ (0, import_jsx_runtime261.jsx)("desc", { children: description }) : null,
11448
11528
  renderBrandmark(brandmarkColor, iconOnly),
11449
11529
  renderLogotype(logotypeColor, iconOnly)
11450
11530
  ]
11451
11531
  }
11452
11532
  );
11453
- return href !== void 0 ? /* @__PURE__ */ (0, import_jsx_runtime260.jsx)("a", { href, children: Logo }) : Logo;
11533
+ return href !== void 0 ? /* @__PURE__ */ (0, import_jsx_runtime261.jsx)("a", { href, children: Logo }) : Logo;
11454
11534
  };
11455
11535
  WistiaLogo.displayName = "WistiaLogo";
11456
11536
  // Annotate the CommonJS export names for ESM import in node:
@@ -11502,6 +11582,7 @@ WistiaLogo.displayName = "WistiaLogo";
11502
11582
  Modal,
11503
11583
  PersistentFileAmountLimitValidator,
11504
11584
  Popover,
11585
+ ProgressBar,
11505
11586
  Radio,
11506
11587
  RadioGroup,
11507
11588
  RadioMenuItem,