@wistia/ui 1.12.0-beta.8e2cd22e.5bf2e3d → 1.12.0

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/CHANGELOG.md ADDED
@@ -0,0 +1,2331 @@
1
+ # Changelog
2
+
3
+ ## 1.12.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [#4216](https://github.com/wistia/vhs/pull/4216) [`a261037`](https://github.com/wistia/vhs/commit/a26103789d81117eca604b4737ff27af808a4b8d) Thanks [@JLamp](https://github.com/JLamp)! - Add the `border`, `border-top`, `border-right`, `border-bottom`, and `border-left` icons to the `Icon` library
8
+
9
+ ## 1.11.3
10
+
11
+ ### Patch Changes
12
+
13
+ - [#4214](https://github.com/wistia/vhs/pull/4214) [`a64d1c2`](https://github.com/wistia/vhs/commit/a64d1c2eab3134d1b4ec5823b935c86b5176635d) Thanks [@wistia-wizard](https://github.com/apps/wistia-wizard)! - `SubMenu` and `ContextMenu` now render behind nothing when opened inside a `Modal`. Both set `z-index: var(--wui-zindex-menu)` on their nested `Menu.Positioner`, matching what `Menu`, `Popover`, `Select` and `Tooltip` already do. Previously the nested positioner had no z-index, so Base UI's default (`z-index: auto`) let `ModalContent` paint over the submenu popup — the items were in the DOM and keyboard-navigable but invisible and unclickable, since pointer events landed on the modal content.
14
+
15
+ ## 1.11.2
16
+
17
+ ### Patch Changes
18
+
19
+ - [#4195](https://github.com/wistia/vhs/pull/4195) [`c36da4c`](https://github.com/wistia/vhs/commit/c36da4c3002f19bc74138e0da5bf117cf54b2ad1) Thanks [@okize](https://github.com/okize)! - `useKey` no longer ignores keyboard events while a non-text `<input>` has focus. Before, any focused `<input>` blocked the handler, so a shortcut such as ⌘Z stopped working after the user dragged a `Slider` (an `<input type="range">`) or clicked a checkbox. The guard now only bails for text-entry elements: text-like inputs, `<textarea>`, `<select>`, and `contentEditable` elements. Inputs of type `range`, `checkbox`, `radio`, `color`, `file`, `button`, `submit`, `reset`, and `image` let the handler run.
20
+
21
+ ## 1.11.1
22
+
23
+ ### Patch Changes
24
+
25
+ - [#4167](https://github.com/wistia/vhs/pull/4167) [`1b23187`](https://github.com/wistia/vhs/commit/1b23187d5581be2296fc08919518b34a0896036b) Thanks [@wistia-wizard](https://github.com/apps/wistia-wizard)! - Prevent iOS Safari from zooming when focusing inputs and textareas. Shared input styling now floors the font size to 16px on coarse-pointer (touch) devices via `@media (any-pointer: coarse)`, since mobile Safari auto-zooms any focused form control that computes under 16px. Desktop keeps its designed 14px, and pinch-to-zoom is unaffected.
26
+
27
+ ## 1.11.0
28
+
29
+ ### Minor Changes
30
+
31
+ - [#4166](https://github.com/wistia/vhs/pull/4166) [`fd33b83`](https://github.com/wistia/vhs/commit/fd33b83dabee04f42c8cda2b4d86b1ff0ec12353) Thanks [@JLamp](https://github.com/JLamp)! - feat: add CheckboxCard component for multi-select card-based choices
32
+
33
+ ## 1.10.0
34
+
35
+ ### Minor Changes
36
+
37
+ - [#4180](https://github.com/wistia/vhs/pull/4180) [`a583066`](https://github.com/wistia/vhs/commit/a58306653f94d90aabeddf4e9f4aae1459ef2092) Thanks [@JLamp](https://github.com/JLamp)! - Added a `textTransform` prop to Text and Heading for controlling capitalization
38
+
39
+ ## 1.9.1
40
+
41
+ ### Patch Changes
42
+
43
+ - [#4184](https://github.com/wistia/vhs/pull/4184) [`1d71f26`](https://github.com/wistia/vhs/commit/1d71f26a02994e68173cde06306b81773d9999f5) Thanks [@wistia-wizard](https://github.com/apps/wistia-wizard)! - fix(ui): prefer 100dvh for body min-height with 100vh fallback
44
+
45
+ Add `min-height: 100dvh` as the highest-priority body declaration in the global style adjustments so the body tracks the dynamic viewport on mobile Safari. `100vh` and `-webkit-fill-available` remain as legacy fallbacks. This makes the app-side `html body { min-height: 100dvh }` override in wistia/wistia#58604 redundant.
46
+
47
+ ## 1.9.0
48
+
49
+ ### Minor Changes
50
+
51
+ - [#4169](https://github.com/wistia/vhs/pull/4169) [`9c71584`](https://github.com/wistia/vhs/commit/9c715849a1564c12822d9079a451ed326a37eb63) Thanks [@JLamp](https://github.com/JLamp)! - feat: add the `remix-lime` color scheme
52
+
53
+ A new brand color scheme built from the accent `#cbff56`, available as
54
+ `<ColorSchemeWrapper colorScheme="remix-lime">`, `getColorScheme('remix-lime')`,
55
+ and the `remixLimeColorScheme` rule set.
56
+
57
+ - **Palette**: a full 12-step hue (plus its alpha scale, surface, and contrast)
58
+ in `palette.tokens.json` and `palette-dark.tokens.json`, produced with the
59
+ same Radix custom-palette generator the other hues came from.
60
+ - **On-fill contrast is prescribed, not derived**: `remix-lime.contrast` is
61
+ `#01183b` in both modes. An accent this bright pairs with dark text, and the
62
+ fixed value keeps `--wui-color-text-on-fill` and `--wui-color-icon-on-fill`
63
+ legible on `bg-fill`.
64
+ - **Light mode lands on a slightly deeper step 9** (`#bff246`) than the accent
65
+ it was generated from. `#cbff56` sits close enough to a white page background
66
+ that the generator falls back to the scale's own step 8 — the same behavior
67
+ the existing `warning` scheme has. Dark mode uses `#cbff56` exactly.
68
+
69
+ ## 1.8.0
70
+
71
+ ### Minor Changes
72
+
73
+ - [#4171](https://github.com/wistia/vhs/pull/4171) [`4bffd51`](https://github.com/wistia/vhs/commit/4bffd51a6c8efacd3d196096e1630da588d13422) Thanks [@JLamp](https://github.com/JLamp)! - feat(Icon): add animation, bulleted-list, checkmark-octagon, clock, globe, invoice, rotate, stroke-weight, tracks, and webinar-series icons
74
+
75
+ Adds ten icons that already existed in the Figma icon frame but were missing from the package, bringing `Icon` to 247 icons:
76
+
77
+ `animation`, `bulleted-list`, `checkmark-octagon`, `clock`, `globe`, `invoice`, `rotate`, `stroke-weight`, `tracks`, `webinar-series`
78
+
79
+ Each one is drawn from the Figma node's own SVG export and has a matching Code Connect file.
80
+
81
+ ## 1.7.0
82
+
83
+ ### Minor Changes
84
+
85
+ - [#4168](https://github.com/wistia/vhs/pull/4168) [`e993d5e`](https://github.com/wistia/vhs/commit/e993d5e6839b83f1dc07367255cd77c06b5e8dae) Thanks [@JLamp](https://github.com/JLamp)! - Add the `chat` icon to the `Icon` library
86
+
87
+ ## 1.6.1
88
+
89
+ ### Patch Changes
90
+
91
+ - [#4160](https://github.com/wistia/vhs/pull/4160) [`c36e0a8`](https://github.com/wistia/vhs/commit/c36e0a8cd3949056f71fa2ddbd3ee6db4c40b076) Thanks [@gbuilds](https://github.com/gbuilds)! - fix(SubMenu): keep the parent menu open when expanding a submenu on mobile
92
+
93
+ ## 1.6.0
94
+
95
+ ### Minor Changes
96
+
97
+ - [#4148](https://github.com/wistia/vhs/pull/4148) [`1672a1a`](https://github.com/wistia/vhs/commit/1672a1a0aba5f3763b75ba15b40f6ac0c3b3d830) Thanks [@JLamp](https://github.com/JLamp)! - feat: add a forced-light color mode and a document-level color-mode API
98
+
99
+ - **`useDocumentColorMode` / `setDocumentColorMode` / `getDocumentColorMode`**: the supported way to drive whole-document color mode. The hook forces a mode while its component is mounted and restores the previous mode on unmount (for route/screen-scoped theming); the setter/getter are the imperative primitives. `DOCUMENT_COLOR_MODE_ATTRIBUTE` is exported for server-rendered layouts that stamp the attribute before first paint.
100
+ - **Forced light**: `data-wui-color-mode="light"` (and `colorMode="light"` on `ColorSchemeWrapper`) re-declares the light palette the same way dark does, so light islands work inside dark regions — e.g. a true-to-output preview on a dark page.
101
+ - **Token-driven page canvas**: the global styles now set `body { background-color: var(--wui-color-bg-app) }`, so whole-document modes repaint the page background instead of only component surfaces. Light-mode consumers see white (the token's light value); apps that set their own body background keep winning by cascade order if their styles load after the design tokens' — verify if you override body backgrounds.
102
+ - **Navs are pinned to light**: a `ColorSchemeWrapper` rendering the nav scheme now forces `colorMode="light"` on itself. The nav scheme mixes fixed hexes with palette references, so inside a dark document only the references flipped — leaving near-black icons and fills on the nav's fixed dark blue. Navs now render as designed regardless of the surrounding mode.
103
+
104
+ ## 1.5.0
105
+
106
+ ### Minor Changes
107
+
108
+ - [#3986](https://github.com/wistia/vhs/pull/3986) [`f7099bf`](https://github.com/wistia/vhs/commit/f7099bfe0d25730d18f4bdf193778cae0aa54855) Thanks [@JLamp](https://github.com/JLamp)! - Add opt-in dark mode. Setting `data-wui-color-mode="dark"` on `<html>` switches the whole document to the dark palette; setting it on any element (or using the new `colorMode="dark"` prop on `ColorSchemeWrapper`) scopes dark mode to that subtree. Dark mode is fully opt-in — `prefers-color-scheme` is not consulted, and nothing changes for consumers who don't set the attribute. Also restores five alias tokens (`--wui-color-bg-app`, `--wui-color-bg-surface-disabled`, and the selected-border trio) that had been flattened to literal light values, so they now follow the active palette.
109
+
110
+ Note for light-mode consumers: `body` and `ColorSchemeWrapper` now set `color: var(--wui-color-text)` explicitly (previously text color was inherited from whatever the app set). Apps already using the global styles see no visual change unless they were relying on an un-tokenized body text color.
111
+
112
+ ## 1.4.4
113
+
114
+ ### Patch Changes
115
+
116
+ - [#4142](https://github.com/wistia/vhs/pull/4142) [`b52dc6c`](https://github.com/wistia/vhs/commit/b52dc6c0a560781a8a8ccfcaf36ed856dd06d239) Thanks [@JLamp](https://github.com/JLamp)! - Fixed a typo in the color token consumed by form control labels (`--wui-color-tex` → `--wui-color-text`). The invalid declaration meant labels for `Checkbox`, `Radio`, `Switch`, and `FormField` inherited their text color from ancestors instead of resolving the design token; they now use `--wui-color-text` directly, so they follow the active color scheme.
117
+
118
+ ## 1.4.3
119
+
120
+ ### Patch Changes
121
+
122
+ - [#4122](https://github.com/wistia/vhs/pull/4122) [`cd91ce1`](https://github.com/wistia/vhs/commit/cd91ce184904bb1de390618069a199876f32edbf) Thanks [@JLamp](https://github.com/JLamp)! - Set `text-wrap: pretty` as the default on `body` in the global styles. Because `text-wrap` is inherited, all text rendered under `UIProvider` now avoids typographic orphans and awkward line breaks. The declaration sits behind `@supports (text-wrap: pretty)`, so browsers without support keep the initial `text-wrap: wrap` behavior and no polyfill is needed.
123
+
124
+ ## 1.4.2
125
+
126
+ ### Patch Changes
127
+
128
+ - [#4127](https://github.com/wistia/vhs/pull/4127) [`75a5c17`](https://github.com/wistia/vhs/commit/75a5c17a2c0b285591c2c6c4d55f75036aeeb969) Thanks [@bim-kryant](https://github.com/bim-kryant)! - `ColorPicker` now fires `onValueCommit` when a predefined swatch is selected from a `ColorGrid` or `ColorList`. Previously, clicking a swatch only fired `onValueChange`, so consumers that defer side effects (e.g. persistence or analytics) until a value settles never saw swatch selections commit.
129
+
130
+ ## 1.4.1
131
+
132
+ ### Patch Changes
133
+
134
+ - [#4116](https://github.com/wistia/vhs/pull/4116) [`19c8046`](https://github.com/wistia/vhs/commit/19c80464d8033086824da8d3ca10f2f553857029) Thanks [@okize](https://github.com/okize)! - Remove the `date-fns` dependency. `parseDateString` now uses a native `Date` implementation with identical behavior, pinned by the characterization suite.
135
+
136
+ ## 1.4.0
137
+
138
+ ### Minor Changes
139
+
140
+ - [#4090](https://github.com/wistia/vhs/pull/4090) [`1385611`](https://github.com/wistia/vhs/commit/1385611342cf6febef0e34d632cc505970f8296c) Thanks [@okize](https://github.com/okize)! - Add `Dimmer` component — a fixed, full-viewport dim layer that draws focus away from the background to a UI element in the foreground.
141
+
142
+ `Dimmer` is the previously private `Backdrop` component, renamed and promoted to the public API. It renders arbitrary children aligned over the dim layer (`alignHorizontal` / `alignVertical`) and adds a `variant` prop: `solid` (default, uniform `--wui-color-backdrop`) or `gradient` (radial gradient heaviest at the center). The private `Backdrop` component has been removed; it had no internal consumers.
143
+
144
+ ## 1.3.2
145
+
146
+ ### Patch Changes
147
+
148
+ - [#4086](https://github.com/wistia/vhs/pull/4086) [`827a8bc`](https://github.com/wistia/vhs/commit/827a8bceb024ccd2f2fa59ec3a5afc0e310d91ce) Thanks [@okize](https://github.com/okize)! - fix(Input): don't select text typed before the deferred autoSelect runs
149
+
150
+ ## 1.3.1
151
+
152
+ ### Patch Changes
153
+
154
+ - [#4081](https://github.com/wistia/vhs/pull/4081) [`69f0bae`](https://github.com/wistia/vhs/commit/69f0baefe686b76183e59a64b46c7f2a6ef537ea) Thanks [@okize](https://github.com/okize)! - `Modal` now stops keydown events from propagating past its root. When a modal is opened from a `MenuItem` and rendered inside the `Menu`, the menu's typeahead no longer intercepts keys typed into the modal — previously this made inputs inside such modals untypeable.
155
+
156
+ ## 1.3.0
157
+
158
+ ### Minor Changes
159
+
160
+ - [#4071](https://github.com/wistia/vhs/pull/4071) [`e84d713`](https://github.com/wistia/vhs/commit/e84d713aaed0b32a15a4e4b911223feeb830793b) Thanks [@okize](https://github.com/okize)! - `useToast` now returns the created toast's `id` and a `dismiss` function so callers can close a specific toast on demand instead of waiting out its `duration`. `UIProvider` accepts an optional `id` that scopes its toasts to a dedicated `Toaster`, so toasts created in one provider (e.g. a separate picture-in-picture window) no longer broadcast into others.
161
+
162
+ ## 1.2.0
163
+
164
+ ### Minor Changes
165
+
166
+ - [#4051](https://github.com/wistia/vhs/pull/4051) [`88a29c8`](https://github.com/wistia/vhs/commit/88a29c884862d606709f6a7f6b11b58043fabebb) Thanks [@JLamp](https://github.com/JLamp)! - Add `align-top`, `align-middle`, and `align-bottom` icons to the `Icon` component
167
+
168
+ ## 1.1.0
169
+
170
+ ### Minor Changes
171
+
172
+ - [#4048](https://github.com/wistia/vhs/pull/4048) [`f9b9236`](https://github.com/wistia/vhs/commit/f9b9236859a1b2c9b7f29025ca3d1e6946de566b) Thanks [@mrdavidjcole](https://github.com/mrdavidjcole)! - Widen the `Menu` `side` prop to accept `left` and `right` in addition to `top` and `bottom`, so a menu can open horizontally beside its trigger instead of above or below it. The value passes straight through to Base UI's positioner, which already supported all four sides at runtime; this exposes `left`/`right` through the typed API. Existing `top`/`bottom` usage is unaffected.
173
+
174
+ ## 1.0.0
175
+
176
+ ### Major Changes
177
+
178
+ - [#3934](https://github.com/wistia/vhs/pull/3934) [`e78c2bb`](https://github.com/wistia/vhs/commit/e78c2bb9f0f454f8670ffb1ea873f9a2ddaa3c44) Thanks [@okize](https://github.com/okize)! - feat!: v1.0.0 - milestone release, no breaking changes
179
+
180
+ ## 0.26.16
181
+
182
+ ### Patch Changes
183
+
184
+ - [#3970](https://github.com/wistia/vhs/pull/3970) [`9aef617`](https://github.com/wistia/vhs/commit/9aef617ae7c6ff287189c5ade704b20a31a3ca87) Thanks [@bim-kryant](https://github.com/bim-kryant)! - Export granular contrast controls for color picker
185
+
186
+ ## 0.26.15
187
+
188
+ ### Patch Changes
189
+
190
+ - [#3768](https://github.com/wistia/vhs/pull/3768) [`f6eee73`](https://github.com/wistia/vhs/commit/f6eee73e8da3f3fb0d2d7d0959df19ba6b180d33) Thanks [@JLamp](https://github.com/JLamp)! - feat: add DatePicker component
191
+
192
+ ## 0.26.14
193
+
194
+ ### Patch Changes
195
+
196
+ - [#3954](https://github.com/wistia/vhs/pull/3954) [`30c114c`](https://github.com/wistia/vhs/commit/30c114c9122ba9092d87807f2bd1769309ff6bb7) Thanks [@JLamp](https://github.com/JLamp)! - feat(Popover): widen PopoverRoot and PopoverContent prop types for DatePicker
197
+
198
+ ## 0.26.13
199
+
200
+ ### Patch Changes
201
+
202
+ - [#3933](https://github.com/wistia/vhs/pull/3933) [`add823b`](https://github.com/wistia/vhs/commit/add823b69cb77b9016c3825066d9a70ab6b9577e) Thanks [@JLamp](https://github.com/JLamp)! - docs(Thumbnail): rewrite Thumbnail docs and refresh stories
203
+
204
+ ## 0.26.12
205
+
206
+ ### Patch Changes
207
+
208
+ - [#3951](https://github.com/wistia/vhs/pull/3951) [`56d3143`](https://github.com/wistia/vhs/commit/56d3143d4ac4885ddb254067a4c5be856f0e68e5) Thanks [@bim-kryant](https://github.com/bim-kryant)! - Added onValueCommit callback to ColorPicker
209
+
210
+ ## 0.26.11
211
+
212
+ ### Patch Changes
213
+
214
+ - [#3935](https://github.com/wistia/vhs/pull/3935) [`efec065`](https://github.com/wistia/vhs/commit/efec065d94f8f2eb555f0f3afaec478c7b3cd84f) Thanks [@JLamp](https://github.com/JLamp)! - Button: replace `align-self: flex-start` with `width: fit-content` so the button sizes to its content without overriding alignment in the parent layout. When `fullWidth` is set, the button still stretches to fill its container.
215
+
216
+ ## 0.26.10
217
+
218
+ ### Patch Changes
219
+
220
+ - [#3931](https://github.com/wistia/vhs/pull/3931) [`f143f38`](https://github.com/wistia/vhs/commit/f143f3874c1d0cec3ec234adf7bf03379998fd9d) Thanks [@JLamp](https://github.com/JLamp)! - fix: narrow `getSemiRandomBackgroundGradient` return type to `GradientNameType`
221
+
222
+ ## 0.26.9
223
+
224
+ ### Patch Changes
225
+
226
+ - [#3929](https://github.com/wistia/vhs/pull/3929) [`a82e58f`](https://github.com/wistia/vhs/commit/a82e58f9ae83645234d8a6e5ee6fe43802fc51ae) Thanks [@okize](https://github.com/okize)! - fix(Button): add align-self: flex-start to Button and unset it in ButtonGroup
227
+
228
+ ## 0.26.8
229
+
230
+ ### Patch Changes
231
+
232
+ - [#3926](https://github.com/wistia/vhs/pull/3926) [`cee2ec3`](https://github.com/wistia/vhs/commit/cee2ec3509a21f4e631de5f59cae10b906452de7) Thanks [@okize](https://github.com/okize)! - fix: export `TimeDuration` type
233
+
234
+ ## 0.26.7
235
+
236
+ ### Patch Changes
237
+
238
+ - [#3920](https://github.com/wistia/vhs/pull/3920) [`e1ac032`](https://github.com/wistia/vhs/commit/e1ac03242ae51deef867d0df022459a269ca43ee) Thanks [@okize](https://github.com/okize)! - fix: remove `forwardRef` from UI package as it is no longer necessary in React 19
239
+
240
+ ## 0.26.6
241
+
242
+ ### Patch Changes
243
+
244
+ - [#3905](https://github.com/wistia/vhs/pull/3905) [`57912bc`](https://github.com/wistia/vhs/commit/57912bc42f67f2c4dd9fc05dd3b6c6a25feb2808) Thanks [@okize](https://github.com/okize)! - feat: make `getBackgroundGradient` a publix helper in UI package
245
+
246
+ ## 0.26.5
247
+
248
+ ### Patch Changes
249
+
250
+ - [#3900](https://github.com/wistia/vhs/pull/3900) [`3208ece`](https://github.com/wistia/vhs/commit/3208ecef0b6737abb851047f15bc0545c760672c) Thanks [@okize](https://github.com/okize)! - feat: add `isUrl` helper to UI package
251
+
252
+ ## 0.26.4
253
+
254
+ ### Patch Changes
255
+
256
+ - [#3899](https://github.com/wistia/vhs/pull/3899) [`c363d42`](https://github.com/wistia/vhs/commit/c363d42916a3f7c38f2eee058587ece94de7c1c9) Thanks [@okize](https://github.com/okize)! - feat: add `stripExtension` helper to UI package
257
+
258
+ ## 0.26.3
259
+
260
+ ### Patch Changes
261
+
262
+ - [#3894](https://github.com/wistia/vhs/pull/3894) [`0d9b790`](https://github.com/wistia/vhs/commit/0d9b79042e4542edfac975e39bda8a5be4a05031) Thanks [@okize](https://github.com/okize)! - fix(Popover): fix arrow positioning for non-bottom sides
263
+
264
+ ## 0.26.2
265
+
266
+ ### Patch Changes
267
+
268
+ - [#3828](https://github.com/wistia/vhs/pull/3828) [`059273c`](https://github.com/wistia/vhs/commit/059273c87a7f71fe4ba94f01e33789ee48a72db4) Thanks [@JLamp](https://github.com/JLamp)! - feat: add Sidebar component
269
+
270
+ ## 0.26.1
271
+
272
+ ### Patch Changes
273
+
274
+ - [#3880](https://github.com/wistia/vhs/pull/3880) [`5f4c094`](https://github.com/wistia/vhs/commit/5f4c094b0b78f80d18968ddb0c7c70feec17dccf) Thanks [@camfarina](https://github.com/camfarina)! - Add an InputDuration component for editing durations in seconds.
275
+
276
+ ## 0.26.0
277
+
278
+ ### Minor Changes
279
+
280
+ - [#3867](https://github.com/wistia/vhs/pull/3867) [`5b751f9`](https://github.com/wistia/vhs/commit/5b751f909ce59c585336a3949bdb44c46a6cc371) Thanks [@okize](https://github.com/okize)! - feat!: enable isolatedDeclarations in UI tsconfig
281
+
282
+ ## 0.25.10
283
+
284
+ ### Patch Changes
285
+
286
+ - [#3873](https://github.com/wistia/vhs/pull/3873) [`901e724`](https://github.com/wistia/vhs/commit/901e724f3a1da52654c60da776907d0eed969d82) Thanks [@AustinBurns](https://github.com/AustinBurns)! - fix(Select): extract text from React-element children so the trigger displays the option label instead of the raw value when consumers wrap children in `<Text>`, `<Stack>`, or other elements
287
+
288
+ ## 0.25.9
289
+
290
+ ### Patch Changes
291
+
292
+ - [#3870](https://github.com/wistia/vhs/pull/3870) [`9a12a25`](https://github.com/wistia/vhs/commit/9a12a25ef8cffa36a89e02e5f072d877ca49771b) Thanks [@okize](https://github.com/okize)! - fix(Select): pass name prop to BaseSelect.Root for form submission
293
+
294
+ ## 0.25.8
295
+
296
+ ### Patch Changes
297
+
298
+ - [#3868](https://github.com/wistia/vhs/pull/3868) [`0183ba5`](https://github.com/wistia/vhs/commit/0183ba52ed9b62de62b22632595494aea8683a33) Thanks [@okize](https://github.com/okize)! - fix(Select): allow Select options to scroll for long options lists
299
+
300
+ ## 0.25.7
301
+
302
+ ### Patch Changes
303
+
304
+ - [#3862](https://github.com/wistia/vhs/pull/3862) [`d42e74b`](https://github.com/wistia/vhs/commit/d42e74b7e9a17ad30781ec7e3369f4badd0929f6) Thanks [@okize](https://github.com/okize)! - fix(Menu): ignore Base UI hover-triggered closes on controlled menus opened via prop
305
+
306
+ ## 0.25.6
307
+
308
+ ### Patch Changes
309
+
310
+ - [#3856](https://github.com/wistia/vhs/pull/3856) [`15a732c`](https://github.com/wistia/vhs/commit/15a732ca54e695a5fdbcce6b57504055f9eeea90) Thanks [@mrdavidjcole](https://github.com/mrdavidjcole)! - fix(ColorPicker): fix hue slider pointer interaction
311
+
312
+ ## 0.25.5
313
+
314
+ ### Patch Changes
315
+
316
+ - [#3854](https://github.com/wistia/vhs/pull/3854) [`f2796df`](https://github.com/wistia/vhs/commit/f2796df04172751072e88316285683c1b9623b17) Thanks [@okize](https://github.com/okize)! - fix: revert `keepMounted={true}` addition as it is not needed
317
+
318
+ ## 0.25.4
319
+
320
+ ### Patch Changes
321
+
322
+ - [#3851](https://github.com/wistia/vhs/pull/3851) [`226a21b`](https://github.com/wistia/vhs/commit/226a21b37276acc4000388bd430f30f46f2f607d) Thanks [@okize](https://github.com/okize)! - fix: add `keepMounted={true}` to Menu Portal so children survive menu close and modals rendered inside Menu are not destroyed
323
+
324
+ ## 0.25.3
325
+
326
+ ### Patch Changes
327
+
328
+ - [#3848](https://github.com/wistia/vhs/pull/3848) [`6771bc9`](https://github.com/wistia/vhs/commit/6771bc94048e2b5f21ec86f6c300303f5f877db2) Thanks [@okize](https://github.com/okize)! - fix: add closeDelay to submenu trigger to prevent premature close on hover
329
+
330
+ ## 0.25.2
331
+
332
+ ### Patch Changes
333
+
334
+ - [#3836](https://github.com/wistia/vhs/pull/3836) [`40fbcb0`](https://github.com/wistia/vhs/commit/40fbcb0cf88b134d676ec30374f58d450ea13d02) Thanks [@okize](https://github.com/okize)! - fix: portal z-index stacking by moving z-index from unpositioned Popup to positioned Positioner in Select, Menu, Tooltip, Popover, PreviewCard, and ColorPicker
335
+
336
+ ## 0.25.1
337
+
338
+ ### Patch Changes
339
+
340
+ - [#3834](https://github.com/wistia/vhs/pull/3834) [`2db020f`](https://github.com/wistia/vhs/commit/2db020fe42ef6379d713586f371f553f09655be2) Thanks [@okize](https://github.com/okize)! - fix: add z-index value to Select positioner to ensure it works inside a Modal
341
+
342
+ ## 0.25.0
343
+
344
+ ### Minor Changes
345
+
346
+ - [#3580](https://github.com/wistia/vhs/pull/3580) [`57effae`](https://github.com/wistia/vhs/commit/57effae39b4e0c034b2a2247b49ecaca1aa7d277) Thanks [@okize](https://github.com/okize)! - feat: migrate `ColorPicker`, `Menu`, `Modal`, `Popover`, `Tooltip` & `Select` components from Radix to Base UI
347
+
348
+ ## 0.24.0
349
+
350
+ ### Minor Changes
351
+
352
+ - [#3820](https://github.com/wistia/vhs/pull/3820) [`13804a4`](https://github.com/wistia/vhs/commit/13804a4cb22be2fa7451429fa3c3a2be01fee891) Thanks [@okize](https://github.com/okize)! - feat: migrate `Tabs`, `Slider`, `SegmentedControl`, `ProgressBar`, `PreviewCard` & `Collapsible` components from Radix to Base UI
353
+
354
+ ## 0.23.0
355
+
356
+ ### Minor Changes
357
+
358
+ - [#3809](https://github.com/wistia/vhs/pull/3809) [`35cfb35`](https://github.com/wistia/vhs/commit/35cfb35c22fb3e25e67003b24468f5c8d61d6385) Thanks [@JLamp](https://github.com/JLamp)! - feat(Icon): add `flip-horizontal`, `flip-vertical`, `layers`, `paste`, `roundness`, `shadow`, `text`, `text-all-caps`, `text-bulleted-list`, `text-center-align`, `text-left-align`, `text-line-height`, `text-numbered-list`, `text-right-align`, `text-strikethrough`, `text-title-case`, `text-underline` icons and remove `bullet-list` icon.
359
+
360
+ ### Patch Changes
361
+
362
+ - [#3779](https://github.com/wistia/vhs/pull/3779) [`5210cb2`](https://github.com/wistia/vhs/commit/5210cb288d041791093589a2b871d6c0ffa88c24) Thanks [@copilot-swe-agent](https://github.com/apps/copilot-swe-agent)! - feat(Icon): flip `remix` icon horizontally
363
+
364
+ ## 0.22.10
365
+
366
+ ### Patch Changes
367
+
368
+ - [#3798](https://github.com/wistia/vhs/pull/3798) [`2d6ddbd`](https://github.com/wistia/vhs/commit/2d6ddbd02a39a833cba6f873c4dade61b41327b5) Thanks [@andrewdang17](https://github.com/andrewdang17)! - add brands and library icon
369
+
370
+ ## 0.22.9
371
+
372
+ ### Patch Changes
373
+
374
+ - [`072b1f5`](https://github.com/wistia/vhs/commit/072b1f5e8f0545b4ef67c56f899b3124b4557bf8) Thanks [@bim-kryant](https://github.com/bim-kryant)! - Add normalization for hex color in ColorPicker
375
+
376
+ ## 0.22.8
377
+
378
+ ### Patch Changes
379
+
380
+ - [#3775](https://github.com/wistia/vhs/pull/3775) [`9054ac8`](https://github.com/wistia/vhs/commit/9054ac8c70d66d1608ac530b1f57d1fb4fd31450) Thanks [@JLamp](https://github.com/JLamp)! - Fix presentational icons inside `Input` blocking focus when clicked. Clicks on left/right `Icon` decorations now pass through to the input. Interactive decorations like `IconButton` (used in `InputClickToCopy`) are unaffected.
381
+
382
+ - [#3769](https://github.com/wistia/vhs/pull/3769) [`a2ae2ab`](https://github.com/wistia/vhs/commit/a2ae2abb8873d317348ae3546f804cbf49ca0a01) Thanks [@JLamp](https://github.com/JLamp)! - feat(Popover): expose composable primitives
383
+
384
+ ## 0.22.7
385
+
386
+ ### Patch Changes
387
+
388
+ - [#3755](https://github.com/wistia/vhs/pull/3755) [`3043a40`](https://github.com/wistia/vhs/commit/3043a40e00f1028904d4f1206acc3ac544307c50) Thanks [@copilot-swe-agent](https://github.com/apps/copilot-swe-agent)! - fix(Button): fix background transition, focus-ring border, and disabled hover inconsistencies
389
+
390
+ ## 0.22.6
391
+
392
+ ### Patch Changes
393
+
394
+ - [#3751](https://github.com/wistia/vhs/pull/3751) [`d811ca6`](https://github.com/wistia/vhs/commit/d811ca643d413465bd2682751d6f03dae68feb36) Thanks [@bim-kryant](https://github.com/bim-kryant)! - Add onOpenChange prop to ColorPicker
395
+
396
+ ## 0.22.5
397
+
398
+ ### Patch Changes
399
+
400
+ - [#3664](https://github.com/wistia/vhs/pull/3664) [`e2ec7ae`](https://github.com/wistia/vhs/commit/e2ec7ae4aa8ddfff8277b938e1404d88e1a01ffb) Thanks [@okize](https://github.com/okize)! - fix: upgrade `use-file-picker` to v2.1.4
401
+
402
+ ## 0.22.4
403
+
404
+ ### Patch Changes
405
+
406
+ - [#3736](https://github.com/wistia/vhs/pull/3736) [`6131baf`](https://github.com/wistia/vhs/commit/6131baf7277b95aec266bd89a2b66a0fbb806bd8) Thanks [@bim-kryant](https://github.com/bim-kryant)! - Allow external styling of ColorPicker and ColorPickerTrigger; fix bug with infinite rerender in color picker
407
+
408
+ ## 0.22.3
409
+
410
+ ### Patch Changes
411
+
412
+ - [#3735](https://github.com/wistia/vhs/pull/3735) [`be42b95`](https://github.com/wistia/vhs/commit/be42b953c314e04f230b2334d068bdb376733370) Thanks [@okize](https://github.com/okize)! - fix: use warning-11 for link text color in warning color scheme
413
+
414
+ ## 0.22.2
415
+
416
+ ### Patch Changes
417
+
418
+ - [#3679](https://github.com/wistia/vhs/pull/3679) [`e32798c`](https://github.com/wistia/vhs/commit/e32798c72ca2a188d0c8882280c182bd04c314c1) Thanks [@ray-wistia](https://github.com/ray-wistia)! - Fix aggressiveness of claude plugin
419
+
420
+ ## 0.22.1
421
+
422
+ ### Patch Changes
423
+
424
+ - [#3659](https://github.com/wistia/vhs/pull/3659) [`9228b78`](https://github.com/wistia/vhs/commit/9228b7875203e55bf67eca35abe8122092ab3576) Thanks [@andrewdang17](https://github.com/andrewdang17)! - add gradient icon
425
+
426
+ ## 0.22.0
427
+
428
+ ### Minor Changes
429
+
430
+ - [#3645](https://github.com/wistia/vhs/pull/3645) [`fec5f57`](https://github.com/wistia/vhs/commit/fec5f57794c052c2d0914a2000f46ea916b4752f) Thanks [@AustinBurns](https://github.com/AustinBurns)! - Add `KEYBOARD_KEYS` set, `isKeyboardKey` type guard, and `,` to `KeyboardKeys`
431
+ - `KeyboardKeys` now includes `','` (comma) as a `PunctuationKeys` member
432
+ - `isKeyboardKey(key: string): key is KeyboardKeys`: type guard that narrows an unknown string to `KeyboardKeys`
433
+
434
+ ## 0.21.12
435
+
436
+ ### Patch Changes
437
+
438
+ - [#3616](https://github.com/wistia/vhs/pull/3616) [`53c1274`](https://github.com/wistia/vhs/commit/53c1274360872da461bb6b207a5512051e641093) Thanks [@JLamp](https://github.com/JLamp)! - fix(Badge): set `height` to `fit-content` to avoid vertical resizing
439
+
440
+ ## 0.21.11
441
+
442
+ ### Patch Changes
443
+
444
+ - [#3603](https://github.com/wistia/vhs/pull/3603) [`d235c95`](https://github.com/wistia/vhs/commit/d235c95f06e59fb112ac8dc769c758d8ff194300) Thanks [@JLamp](https://github.com/JLamp)! - fix(MenuItemButton): remove extra padding from radio menu items
445
+
446
+ ## 0.21.10
447
+
448
+ ### Patch Changes
449
+
450
+ - [#3626](https://github.com/wistia/vhs/pull/3626) [`c8c7f39`](https://github.com/wistia/vhs/commit/c8c7f39a2a670f98880f78f455c2102ddfbc9391) Thanks [@okize](https://github.com/okize)! - build: switch bundler from tsup to tsdown
451
+
452
+ ## 0.21.9
453
+
454
+ ### Patch Changes
455
+
456
+ - [#3628](https://github.com/wistia/vhs/pull/3628) [`0d7e40e`](https://github.com/wistia/vhs/commit/0d7e40eddd2b60648c14133b29446affb1975448) Thanks [@JLamp](https://github.com/JLamp)! - fix(Modal): ensure right side panel Modal stays full height
457
+
458
+ ## 0.21.8
459
+
460
+ ### Patch Changes
461
+
462
+ - [#3610](https://github.com/wistia/vhs/pull/3610) [`de24dda`](https://github.com/wistia/vhs/commit/de24dda95ce60fa29498a95207f994b9911816f9) Thanks [@okize](https://github.com/okize)! - fix: type onChange as ChangeEvent<HTMLInputElement> for Checkbox, Radio, and Switch
463
+
464
+ ## 0.21.7
465
+
466
+ ### Patch Changes
467
+
468
+ - [#3605](https://github.com/wistia/vhs/pull/3605) [`821b00a`](https://github.com/wistia/vhs/commit/821b00a8059896f3a7cc288ad47cb3006af6dae9) Thanks [@mrdavidjcole](https://github.com/mrdavidjcole)! - feat(ui): extract design tokens to CSS files for VSCode autocomplete
469
+
470
+ - [#3609](https://github.com/wistia/vhs/pull/3609) [`d9058b8`](https://github.com/wistia/vhs/commit/d9058b8f5b78cea6b1e300bfa5dfc9ebadb5b3ac) Thanks [@mrdavidjcole](https://github.com/mrdavidjcole)! - chore(logging): use signale instead of console for logging in generateCssCustomData script
471
+
472
+ ## 0.21.6
473
+
474
+ ### Patch Changes
475
+
476
+ - [#3596](https://github.com/wistia/vhs/pull/3596) [`9f5ae59`](https://github.com/wistia/vhs/commit/9f5ae59a95691dde302ca38547608b3aff0dce80) Thanks [@okize](https://github.com/okize)! - fix: ensure style props reach `Popover` component
477
+
478
+ ## 0.21.5
479
+
480
+ ### Patch Changes
481
+
482
+ - [#3469](https://github.com/wistia/vhs/pull/3469) [`41a1509`](https://github.com/wistia/vhs/commit/41a1509cc7e496d672877ce7e772a91a32da27cb) Thanks [@okize](https://github.com/okize)! - feat: add `onValueCommit` prop to Slider component
483
+
484
+ ## 0.21.4
485
+
486
+ ### Patch Changes
487
+
488
+ - [#3468](https://github.com/wistia/vhs/pull/3468) [`c145fd2`](https://github.com/wistia/vhs/commit/c145fd2e7b6ebf997f5f95cb340a737d86b243f2) Thanks [@okize](https://github.com/okize)! - fix: allow long titles without word boundaries to wrap in ModalHeader
489
+
490
+ ## 0.21.3
491
+
492
+ ### Patch Changes
493
+
494
+ - [#3477](https://github.com/wistia/vhs/pull/3477) [`2b8e05d`](https://github.com/wistia/vhs/commit/2b8e05d5e00e0180cbd53e4b3ad1bdd652a6149e) Thanks [@okize](https://github.com/okize)! - fix: use transient props in List component
495
+
496
+ ## 0.21.2
497
+
498
+ ### Patch Changes
499
+
500
+ - [#3466](https://github.com/wistia/vhs/pull/3466) [`cda00e4`](https://github.com/wistia/vhs/commit/cda00e462c51705b63586d717b8d5540921845c4) Thanks [@mrdavidjcole](https://github.com/mrdavidjcole)! - chore(ColorPicker): add comments to subcomponents
501
+
502
+ - [#3465](https://github.com/wistia/vhs/pull/3465) [`6b9f5b1`](https://github.com/wistia/vhs/commit/6b9f5b190db35d1967662582c767be331ee411b6) Thanks [@JLamp](https://github.com/JLamp)! - fix(Icon): only apply inline styles if Icon is a direct child of Text / Heading / Link
503
+
504
+ ## 0.21.1
505
+
506
+ ### Patch Changes
507
+
508
+ - [#3442](https://github.com/wistia/vhs/pull/3442) [`c203e0a`](https://github.com/wistia/vhs/commit/c203e0a9d8f256560cb21ee43a24ec646463bda3) Thanks [@JLamp](https://github.com/JLamp)! - feat(PreviewCard): add PreviewCard component
509
+
510
+ ## 0.21.0
511
+
512
+ ### Minor Changes
513
+
514
+ - [#3411](https://github.com/wistia/vhs/pull/3411) [`d72bc7c`](https://github.com/wistia/vhs/commit/d72bc7ca9c666e032dd8652b97e9ac45d9c97efd) Thanks [@JLamp](https://github.com/JLamp)! - feat(Banner)!: simplify `Banner` component
515
+ - **Banner**: Removed `image`, `prominence`, and `orientation` props. Banner now uses a single, simpler layout (icon, text, actions, optional close). Use `FeatureCard` for higher prominence messages.
516
+ - **BannerImage**: Component removed. Remove any `BannerImage` imports and `image={<BannerImage ... />}` usage from Banner. Image-in-banner use cases are no longer supported by this component, use `FeatureCard` instead.
517
+
518
+ ## 0.20.22
519
+
520
+ ### Patch Changes
521
+
522
+ - [#3433](https://github.com/wistia/vhs/pull/3433) [`46d9ee9`](https://github.com/wistia/vhs/commit/46d9ee98d991cce71cd3de0c0a52cd00dec113a5) Thanks [@JLamp](https://github.com/JLamp)! - fix(SegmentedControl): fix selected text in nav color scheme
523
+
524
+ ## 0.20.21
525
+
526
+ ### Patch Changes
527
+
528
+ - [#3424](https://github.com/wistia/vhs/pull/3424) [`5fed2af`](https://github.com/wistia/vhs/commit/5fed2af13398b7c6e7635e7639dea3bf54b73a91) Thanks [@kevin-jacobson-at-wistia](https://github.com/kevin-jacobson-at-wistia)! - Add my-library icon
529
+
530
+ - [#3423](https://github.com/wistia/vhs/pull/3423) [`ee64e8c`](https://github.com/wistia/vhs/commit/ee64e8c19565db4a6443f7c51f5c77e7d87cfe52) Thanks [@gbuilds](https://github.com/gbuilds)! - Added Credits icon
531
+
532
+ ## 0.20.20
533
+
534
+ ### Patch Changes
535
+
536
+ - [#3421](https://github.com/wistia/vhs/pull/3421) [`f144e32`](https://github.com/wistia/vhs/commit/f144e3245bf854cd2b948a00c21473a03ae2a603) Thanks [@AustinBurns](https://github.com/AustinBurns)! - Added Expand Diagonal Window icon
537
+
538
+ ## 0.20.19
539
+
540
+ ### Patch Changes
541
+
542
+ - [#3417](https://github.com/wistia/vhs/pull/3417) [`bf7737a`](https://github.com/wistia/vhs/commit/bf7737a1e20b133f223d4f55c51512617984b636) Thanks [@zachmccleaf](https://github.com/zachmccleaf)! - adding isGated prop to RadioCard
543
+
544
+ ## 0.20.18
545
+
546
+ ### Patch Changes
547
+
548
+ - [#3410](https://github.com/wistia/vhs/pull/3410) [`24cf007`](https://github.com/wistia/vhs/commit/24cf0079c5b138feaf28ed1b20dec01ce37e3b2d) Thanks [@JLamp](https://github.com/JLamp)! - feat(FeatureCard): add FeatureCard component
549
+
550
+ ## 0.20.17
551
+
552
+ ### Patch Changes
553
+
554
+ - [#3413](https://github.com/wistia/vhs/pull/3413) [`2dfe3ba`](https://github.com/wistia/vhs/commit/2dfe3babe54906f5314729814765da716ff8634f) Thanks [@okize](https://github.com/okize)! - feat: add Meter component
555
+
556
+ ## 0.20.16
557
+
558
+ ### Patch Changes
559
+
560
+ - [#3407](https://github.com/wistia/vhs/pull/3407) [`6145b89`](https://github.com/wistia/vhs/commit/6145b8979bbb882dcb50ec51392eea2f85f283aa) Thanks [@jetpackjarrett](https://github.com/jetpackjarrett)! - fix: Handle seg control color for nav scheme
561
+
562
+ ## 0.20.15
563
+
564
+ ### Patch Changes
565
+
566
+ - [#3405](https://github.com/wistia/vhs/pull/3405) [`3adfdde`](https://github.com/wistia/vhs/commit/3adfdde9018756c5e9c3211aa4bcb79c2cb7a7ee) Thanks [@okize](https://github.com/okize)! - feature: add "once" functionality to `useKeyPress`
567
+
568
+ ## 0.20.14
569
+
570
+ ### Patch Changes
571
+
572
+ - [#3401](https://github.com/wistia/vhs/pull/3401) [`4d2030b`](https://github.com/wistia/vhs/commit/4d2030badf2c700cba5fe23007b37b233ce44941) Thanks [@JLamp](https://github.com/JLamp)! - feat(Link): add inheritColor prop
573
+
574
+ ## 0.20.13
575
+
576
+ ### Patch Changes
577
+
578
+ - [#3400](https://github.com/wistia/vhs/pull/3400) [`1188cfc`](https://github.com/wistia/vhs/commit/1188cfc0d4188bb432a433536d0e29e489be06e1) Thanks [@okize](https://github.com/okize)! - feat: add `useKeyPress` hook to UI package
579
+
580
+ ## 0.20.12
581
+
582
+ ### Patch Changes
583
+
584
+ - [#3378](https://github.com/wistia/vhs/pull/3378) [`f3a0415`](https://github.com/wistia/vhs/commit/f3a041584f5ad9862931d0246cdb9b36af6f3f5c) Thanks [@okize](https://github.com/okize)! - feat: add `padding` prop to Stack component
585
+
586
+ ## 0.20.11
587
+
588
+ ### Patch Changes
589
+
590
+ - [#3393](https://github.com/wistia/vhs/pull/3393) [`eed8d41`](https://github.com/wistia/vhs/commit/eed8d41154c10674494e21657c757d08647e1ac3) Thanks [@okize](https://github.com/okize)! - feat: add `coerceToBoolean` helper to UI package
591
+
592
+ ## 0.20.10
593
+
594
+ ### Patch Changes
595
+
596
+ - [#3382](https://github.com/wistia/vhs/pull/3382) [`645b52f`](https://github.com/wistia/vhs/commit/645b52fd2c549326e3b071195a066e15ffd175d2) Thanks [@JLamp](https://github.com/JLamp)! - fix(Markdown): correct formatting for `textSize` args
597
+
598
+ ## 0.20.9
599
+
600
+ ### Patch Changes
601
+
602
+ - [#2970](https://github.com/wistia/vhs/pull/2970) [`80fb95c`](https://github.com/wistia/vhs/commit/80fb95c22b12db59705d23c1fd0b475099d2f134) Thanks [@okize](https://github.com/okize)! - feat: add Markdown component
603
+
604
+ ## 0.20.8
605
+
606
+ ### Patch Changes
607
+
608
+ - [#3349](https://github.com/wistia/vhs/pull/3349) [`3055764`](https://github.com/wistia/vhs/commit/305576492ac2cf5c1f3599204e161a32f3d1f771) Thanks [@JLamp](https://github.com/JLamp)! - feat(Divider): add `inset` prop, fix size in flexboxes
609
+
610
+ ## 0.20.7
611
+
612
+ ### Patch Changes
613
+
614
+ - [#3347](https://github.com/wistia/vhs/pull/3347) [`fc2c448`](https://github.com/wistia/vhs/commit/fc2c448b04cda7f901a612826eee90b790ca9bd0) Thanks [@andrewdang17](https://github.com/andrewdang17)! - export validateWithYup
615
+
616
+ ## 0.20.6
617
+
618
+ ### Patch Changes
619
+
620
+ - [#3343](https://github.com/wistia/vhs/pull/3343) [`3df9c2c`](https://github.com/wistia/vhs/commit/3df9c2c0d29a26af597ca8efde1afbcb43061c60) Thanks [@JLamp](https://github.com/JLamp)! - feat(Icon): add `clips` and `write` icons
621
+
622
+ ## 0.20.5
623
+
624
+ ### Patch Changes
625
+
626
+ - [#3337](https://github.com/wistia/vhs/pull/3337) [`5338d32`](https://github.com/wistia/vhs/commit/5338d32fcfac331c5ea81c3e9d0088cf5084d79f) Thanks [@andrewdang17](https://github.com/andrewdang17)! - add paper clip icon
627
+
628
+ ## 0.20.4
629
+
630
+ ### Patch Changes
631
+
632
+ - [#3335](https://github.com/wistia/vhs/pull/3335) [`810cfdb`](https://github.com/wistia/vhs/commit/810cfdb3bfae690579c6403a57d7302f2f7038c8) Thanks [@mrdavidjcole](https://github.com/mrdavidjcole)! - fix(Tabs): fix that focus-visible style was not appearing
633
+
634
+ ## 0.20.3
635
+
636
+ ### Patch Changes
637
+
638
+ - [#3322](https://github.com/wistia/vhs/pull/3322) [`253a686`](https://github.com/wistia/vhs/commit/253a68611c3014d67cc30f366f25640283b404db) Thanks [@JLamp](https://github.com/JLamp)! - feat(Icon): add `bank`, `bullet-list`, `credit-card`, `pencil-sparkle`, `question-chat`, `text-bold`, `text-italic` icons
639
+
640
+ ## 0.20.2
641
+
642
+ ### Patch Changes
643
+
644
+ - [#3326](https://github.com/wistia/vhs/pull/3326) [`8c1539d`](https://github.com/wistia/vhs/commit/8c1539de9de7690695278db0e343ae1f3f303d28) Thanks [@okize](https://github.com/okize)! - fix: adjust exports field for ui, vhs & vhs-design-tokens packages
645
+
646
+ ## 0.20.1
647
+
648
+ ### Patch Changes
649
+
650
+ - [#3320](https://github.com/wistia/vhs/pull/3320) [`941bb17`](https://github.com/wistia/vhs/commit/941bb17219f75432d1bddc4856fbcb45905e973f) Thanks [@JLamp](https://github.com/JLamp)! - feat(Icons): add `remix` icon
651
+
652
+ ## 0.20.0
653
+
654
+ ### Minor Changes
655
+
656
+ - [#3316](https://github.com/wistia/vhs/pull/3316) [`bbd58f0`](https://github.com/wistia/vhs/commit/bbd58f07c11730ff1b1df28629985f03d91a5958) Thanks [@okize](https://github.com/okize)! - feat!: drop commonsJS support and React 18 support
657
+
658
+ ## 0.19.4
659
+
660
+ ### Patch Changes
661
+
662
+ - [#3287](https://github.com/wistia/vhs/pull/3287) [`e238cb4`](https://github.com/wistia/vhs/commit/e238cb49c86a5ae6e276adfe0f5ee3d910ef0941) Thanks [@mrdavidjcole](https://github.com/mrdavidjcole)! - fix(Select): fix Select content offset when positioned above trigger
663
+
664
+ ## 0.19.3
665
+
666
+ ### Patch Changes
667
+
668
+ - [#3265](https://github.com/wistia/vhs/pull/3265) [`dd1f921`](https://github.com/wistia/vhs/commit/dd1f9219615230ae3a1690f49f80e86b83e16b13) Thanks [@JLamp](https://github.com/JLamp)! - feat(CustomizableThemeWrapper): allow for overriding font families and weights
669
+
670
+ ## 0.19.2
671
+
672
+ ### Patch Changes
673
+
674
+ - [#3278](https://github.com/wistia/vhs/pull/3278) [`deaa646`](https://github.com/wistia/vhs/commit/deaa6462c423961453405efa50a8fe819d0d1fd3) Thanks [@JLamp](https://github.com/JLamp)! - fix(Button, ActionButton): prevent focus states from clipping
675
+
676
+ ## 0.19.1
677
+
678
+ ### Patch Changes
679
+
680
+ - [#3272](https://github.com/wistia/vhs/pull/3272) [`a4e90f7`](https://github.com/wistia/vhs/commit/a4e90f717612ce1917ee28eb8925e0f35e0ef2bb) Thanks [@JLamp](https://github.com/JLamp)! - feat(DataCards): add `columns` prop
681
+
682
+ ## 0.19.0
683
+
684
+ ### Minor Changes
685
+
686
+ - [#3222](https://github.com/wistia/vhs/pull/3222) [`5ed09b7`](https://github.com/wistia/vhs/commit/5ed09b78cfb1539793da7cb71f84042a76a8ee47) Thanks [@jeffreyzhen](https://github.com/jeffreyzhen)! - update spacing of FormField variants, with description and error
687
+
688
+ ## 0.18.18
689
+
690
+ ### Patch Changes
691
+
692
+ - [#3267](https://github.com/wistia/vhs/pull/3267) [`e122b3a`](https://github.com/wistia/vhs/commit/e122b3adfd7a4de337352d2b3a1bffcbf2a61e32) Thanks [@JLamp](https://github.com/JLamp)! - fix(DataCard): show selected state when isLoading is true
693
+
694
+ ## 0.18.17
695
+
696
+ ### Patch Changes
697
+
698
+ - [#3260](https://github.com/wistia/vhs/pull/3260) [`8c8c051`](https://github.com/wistia/vhs/commit/8c8c051886b4de15cd88734b2db6e84db3a5425a) Thanks [@JLamp](https://github.com/JLamp)! - feat(Icon): add `project-open`, update `project`
699
+
700
+ ## 0.18.16
701
+
702
+ ### Patch Changes
703
+
704
+ - [#3258](https://github.com/wistia/vhs/pull/3258) [`7b9e5ea`](https://github.com/wistia/vhs/commit/7b9e5eaa0a396d28dffe45c1aec3acf2656cfb2b) Thanks [@jetpackjarrett](https://github.com/jetpackjarrett)! - fix: keep hidden input within the bounds of the switch
705
+
706
+ ## 0.18.15
707
+
708
+ ### Patch Changes
709
+
710
+ - [#3251](https://github.com/wistia/vhs/pull/3251) [`f0fa85f`](https://github.com/wistia/vhs/commit/f0fa85f6a401e5179a13220c5bf0ea203b7ad3c5) Thanks [@jetpackjarrett](https://github.com/jetpackjarrett)! - CustomizableThemeWrapper
711
+
712
+ ## 0.18.14
713
+
714
+ ### Patch Changes
715
+
716
+ - [#3237](https://github.com/wistia/vhs/pull/3237) [`d6ee881`](https://github.com/wistia/vhs/commit/d6ee88135b2b5bcbf46f3b152597b69ffaf123f4) Thanks [@JLamp](https://github.com/JLamp)! - feat(Icon): add `docs-dev`, `timeline-vertical`, `token`, and `webhook` icons
717
+
718
+ ## 0.18.13
719
+
720
+ ### Patch Changes
721
+
722
+ - [#3235](https://github.com/wistia/vhs/pull/3235) [`5bfea9b`](https://github.com/wistia/vhs/commit/5bfea9bd7dd5188c21cfaafa4a918c4e46953b96) Thanks [@okize](https://github.com/okize)! - fix: use a css animation instead of the SVG animateTransform in "Spinner" icons
723
+
724
+ ## 0.18.12
725
+
726
+ ### Patch Changes
727
+
728
+ - [#3228](https://github.com/wistia/vhs/pull/3228) [`67fa2f8`](https://github.com/wistia/vhs/commit/67fa2f883a87de37de7c75c1001b854256b39e6f) Thanks [@okize](https://github.com/okize)! - feat: export UseToastReturnType, UseIsHoveredReturnType, UseMqReturnType & UseActiveMqReturnType
729
+
730
+ ## 0.18.11
731
+
732
+ ### Patch Changes
733
+
734
+ - [#3230](https://github.com/wistia/vhs/pull/3230) [`527e127`](https://github.com/wistia/vhs/commit/527e127f4148db8fa8418a4c95d0bf498ee8ad9c) Thanks [@okize](https://github.com/okize)! - refactor: revert to the previous version of useIsHovered because the changes do not seem to work correctly
735
+
736
+ ## 0.18.10
737
+
738
+ ### Patch Changes
739
+
740
+ - [#3207](https://github.com/wistia/vhs/pull/3207) [`755e73b`](https://github.com/wistia/vhs/commit/755e73b132fdf58fd2d04b96e010d425d43d09ab) Thanks [@JLamp](https://github.com/JLamp)! - fix(Thumbnail, ThumbnailBadge): ensure rounded corners for square thumbnails, add fallback for ThumbnailBadge positioning
741
+
742
+ ## 0.18.9
743
+
744
+ ### Patch Changes
745
+
746
+ - [#3115](https://github.com/wistia/vhs/pull/3115) [`aeed1cd`](https://github.com/wistia/vhs/commit/aeed1cdc4856d892cb389d556c1691441233a30b) Thanks [@okize](https://github.com/okize)! - fix: only respond to events that originate from the current target in useIsHoveredHook
747
+
748
+ ## 0.18.8
749
+
750
+ ### Patch Changes
751
+
752
+ - [#3212](https://github.com/wistia/vhs/pull/3212) [`20f86cd`](https://github.com/wistia/vhs/commit/20f86cdb93c5131cd229bebdba4768da5b8d8eb6) Thanks [@andrewdang17](https://github.com/andrewdang17)! - add envelope-open, header, footer, and featured icons
753
+
754
+ ## 0.18.7
755
+
756
+ ### Patch Changes
757
+
758
+ - [#3177](https://github.com/wistia/vhs/pull/3177) [`e05a14c`](https://github.com/wistia/vhs/commit/e05a14c93ce6cd9c715fefb5f090c4309f470eb0) Thanks [@andrewdang17](https://github.com/andrewdang17)! - remove label requirement for badge component
759
+
760
+ ## 0.18.6
761
+
762
+ ### Patch Changes
763
+
764
+ - [#3205](https://github.com/wistia/vhs/pull/3205) [`2b11f96`](https://github.com/wistia/vhs/commit/2b11f96c79747fdc65ae7cf45310f84496ee815d) Thanks [@jetpackjarrett](https://github.com/jetpackjarrett)! - fix: removing prominence default and replacing with primary
765
+
766
+ ## 0.18.5
767
+
768
+ ### Patch Changes
769
+
770
+ - [#3203](https://github.com/wistia/vhs/pull/3203) [`3c4fdb0`](https://github.com/wistia/vhs/commit/3c4fdb025747b9c0789a4de950f613ec9ab9769a) Thanks [@JLamp](https://github.com/JLamp)! - fix(Thumbnail): don't render `img` element if url is empty string
771
+
772
+ ## 0.18.4
773
+
774
+ ### Patch Changes
775
+
776
+ - [#3200](https://github.com/wistia/vhs/pull/3200) [`643ee0d`](https://github.com/wistia/vhs/commit/643ee0d6c397f60683715b47e9c2ee29659a2b16) Thanks [@jetpackjarrett](https://github.com/jetpackjarrett)! - fix: fixed spinner icon animation in safari
777
+
778
+ ## 0.18.3
779
+
780
+ ### Patch Changes
781
+
782
+ - [#3202](https://github.com/wistia/vhs/pull/3202) [`bc76336`](https://github.com/wistia/vhs/commit/bc763366b319155fe8c46389f20a285b114fae7f) Thanks [@maddiedierker](https://github.com/maddiedierker)! - fix(Banner): Export BannerImage component instead of type
783
+
784
+ - [#3193](https://github.com/wistia/vhs/pull/3193) [`b95a81d`](https://github.com/wistia/vhs/commit/b95a81da53d414d9ac5939d46202116f7860e87e) Thanks [@JLamp](https://github.com/JLamp)! - feat(Thumbnail, ThumbnailBadge): better responsive border radius, responsive badge offset
785
+
786
+ ## 0.18.2
787
+
788
+ ### Patch Changes
789
+
790
+ - [#3110](https://github.com/wistia/vhs/pull/3110) [`a2c9ec9`](https://github.com/wistia/vhs/commit/a2c9ec955459c14d33add65ba06b5be678ec699e) Thanks [@okize](https://github.com/okize)! - feat: add aspectRatio prop to Thumbnail to support square thumbnails
791
+
792
+ ## 0.18.1
793
+
794
+ ### Patch Changes
795
+
796
+ - [#3196](https://github.com/wistia/vhs/pull/3196) [`65fc22e`](https://github.com/wistia/vhs/commit/65fc22e45fff16efd4381497b87aa15d45f3200d) Thanks [@okize](https://github.com/okize)! - feat: add fullHeight prop to Input component
797
+
798
+ ## 0.18.0
799
+
800
+ ### Minor Changes
801
+
802
+ - [#1998](https://github.com/wistia/vhs/pull/1998) [`eb6a24d`](https://github.com/wistia/vhs/commit/eb6a24d436aac3a5ae3d73cd8598107796115605) Thanks [@okize](https://github.com/okize)! - feat!: upgrade to styled-components v6
803
+
804
+ ## 0.17.1
805
+
806
+ ### Patch Changes
807
+
808
+ - [#3186](https://github.com/wistia/vhs/pull/3186) [`fd9a810`](https://github.com/wistia/vhs/commit/fd9a81063016a0424348ca89fc84eddf5174d61f) Thanks [@JLamp](https://github.com/JLamp)! - fix(Modal): make Modal respond to viewport width
809
+
810
+ ## 0.17.0
811
+
812
+ ### Minor Changes
813
+
814
+ - [#3183](https://github.com/wistia/vhs/pull/3183) [`a4df248`](https://github.com/wistia/vhs/commit/a4df2481763814cf8fc90b0f593efb78821b4ba8) Thanks [@okize](https://github.com/okize)! - fix!: rename truncate prop to maxLines in Text & Heading components
815
+
816
+ ## 0.16.1
817
+
818
+ ### Patch Changes
819
+
820
+ - [#3178](https://github.com/wistia/vhs/pull/3178) [`669e62a`](https://github.com/wistia/vhs/commit/669e62a8089fc684c59967617c64c49bbbbafdc6) Thanks [@jetpackjarrett](https://github.com/jetpackjarrett)! - fix: converted default prop type to standard for colorScheme
821
+
822
+ - [#3176](https://github.com/wistia/vhs/pull/3176) [`ad9ab36`](https://github.com/wistia/vhs/commit/ad9ab36e4ae2b28e52f859d2d09948ed44e44d2f) Thanks [@JLamp](https://github.com/JLamp)! - feat(EditableText): More appropriate padding for text size
823
+
824
+ - [#3178](https://github.com/wistia/vhs/pull/3178) [`669e62a`](https://github.com/wistia/vhs/commit/669e62a8089fc684c59967617c64c49bbbbafdc6) Thanks [@jetpackjarrett](https://github.com/jetpackjarrett)! - fix: converted default prop type to standard for colorScheme
825
+
826
+ ## 0.16.0
827
+
828
+ ### Minor Changes
829
+
830
+ - [#3173](https://github.com/wistia/vhs/pull/3173) [`dc25e53`](https://github.com/wistia/vhs/commit/dc25e53a26eb606e211058b2a5c62e204dd788be) Thanks [@jeffreyzhen](https://github.com/jeffreyzhen)! - add required prop to FormField component
831
+
832
+ ### Patch Changes
833
+
834
+ - [#3179](https://github.com/wistia/vhs/pull/3179) [`6406008`](https://github.com/wistia/vhs/commit/6406008634aeb19f5818171564e2ccfcf5eb5fea) Thanks [@maddiedierker](https://github.com/maddiedierker)! - fix(Banner): Export BannerImage component from Banner index
835
+
836
+ ## 0.15.14
837
+
838
+ ### Patch Changes
839
+
840
+ - [#3168](https://github.com/wistia/vhs/pull/3168) [`b7ed240`](https://github.com/wistia/vhs/commit/b7ed240bc46c9989d5c0c3315178bf829f25303f) Thanks [@mrdavidjcole](https://github.com/mrdavidjcole)! - feat(ContextMenu): support compact mode
841
+
842
+ - [#3165](https://github.com/wistia/vhs/pull/3165) [`705fd3b`](https://github.com/wistia/vhs/commit/705fd3b54ec450251de590680b6e0952100f70b0) Thanks [@mrdavidjcole](https://github.com/mrdavidjcole)! - fix(ContextMenu): portal ContextMenu anchor to ensure proper location
843
+
844
+ ## 0.15.13
845
+
846
+ ### Patch Changes
847
+
848
+ - [#3170](https://github.com/wistia/vhs/pull/3170) [`d0ca3c1`](https://github.com/wistia/vhs/commit/d0ca3c1ff4c46571dc564929f33f354874a1e7e5) Thanks [@okize](https://github.com/okize)! - feat: add `maxChars` prop to `Text` and `Heading` components
849
+
850
+ ## 0.15.12
851
+
852
+ ### Patch Changes
853
+
854
+ - [#3161](https://github.com/wistia/vhs/pull/3161) [`7077430`](https://github.com/wistia/vhs/commit/7077430996ff0b3c43703748f490204b9340483f) Thanks [@mrdavidjcole](https://github.com/mrdavidjcole)! - fix(EditableText): put caret at end of EditableText input on focus
855
+
856
+ ## 0.15.11
857
+
858
+ ### Patch Changes
859
+
860
+ - [#3158](https://github.com/wistia/vhs/pull/3158) [`42dc8ce`](https://github.com/wistia/vhs/commit/42dc8cef8b719714cec32e3860553dc62b6f54a0) Thanks [@mrdavidjcole](https://github.com/mrdavidjcole)! - feat(Icon): add keyboard icon
861
+
862
+ ## 0.15.10
863
+
864
+ ### Patch Changes
865
+
866
+ - [#3156](https://github.com/wistia/vhs/pull/3156) [`383c294`](https://github.com/wistia/vhs/commit/383c294b671d4577414c87d4c1cb6284ac02391e) Thanks [@mrdavidjcole](https://github.com/mrdavidjcole)! - feat(Icon): add cmd icon
867
+
868
+ - [#3155](https://github.com/wistia/vhs/pull/3155) [`aaccb6f`](https://github.com/wistia/vhs/commit/aaccb6f708148b9f8857e1fdce17dfa650c61a4d) Thanks [@mrdavidjcole](https://github.com/mrdavidjcole)! - feat(ColorPicker): tweak padding of trigger, make diameter of ValueSwatch configurable
869
+
870
+ ## 0.15.9
871
+
872
+ ### Patch Changes
873
+
874
+ - [#3151](https://github.com/wistia/vhs/pull/3151) [`25740f2`](https://github.com/wistia/vhs/commit/25740f24fe58e5183d8af1e3ef548f6897664954) Thanks [@mrdavidjcole](https://github.com/mrdavidjcole)! - feat(Select): tweak alignment and gap, add checkmarkVerticalAlign prop
875
+
876
+ ## 0.15.8
877
+
878
+ ### Patch Changes
879
+
880
+ - [#3148](https://github.com/wistia/vhs/pull/3148) [`f234b35`](https://github.com/wistia/vhs/commit/f234b35d9efae8ba881bc5fe6c5cf0d8e24dc489) Thanks [@mrdavidjcole](https://github.com/mrdavidjcole)! - feat(Select): style the arrows for Select
881
+
882
+ ## 0.15.7
883
+
884
+ ### Patch Changes
885
+
886
+ - [#3146](https://github.com/wistia/vhs/pull/3146) [`75359fb`](https://github.com/wistia/vhs/commit/75359fbeaf846a84ccedc23133d8c4d056b24e15) Thanks [@jetpackjarrett](https://github.com/jetpackjarrett)! - fix: adjust button line height
887
+
888
+ ## 0.15.6
889
+
890
+ ### Patch Changes
891
+
892
+ - [#3137](https://github.com/wistia/vhs/pull/3137) [`10be69c`](https://github.com/wistia/vhs/commit/10be69c585b0096772f6fd6357877ec9ea052a3d) Thanks [@JLamp](https://github.com/JLamp)! - SplitButton: allow for single action and properly apply styling to nested IconButton
893
+
894
+ ## 0.15.5
895
+
896
+ ### Patch Changes
897
+
898
+ - [#3127](https://github.com/wistia/vhs/pull/3127) [`05ed946`](https://github.com/wistia/vhs/commit/05ed946ea2c649fce12f28e81715eec5445e92e2) Thanks [@okize](https://github.com/okize)! - refactor: update `renderAs` in Form component
899
+
900
+ ## 0.15.4
901
+
902
+ ### Patch Changes
903
+
904
+ - [#3124](https://github.com/wistia/vhs/pull/3124) [`0b08520`](https://github.com/wistia/vhs/commit/0b08520ee34d314f0a3c03c6984cf1e228e5957d) Thanks [@jetpackjarrett](https://github.com/jetpackjarrett)! - Single selection for comboboxes
905
+
906
+ ## 0.15.3
907
+
908
+ ### Patch Changes
909
+
910
+ - [#3125](https://github.com/wistia/vhs/pull/3125) [`f37fafa`](https://github.com/wistia/vhs/commit/f37fafa3f00b6d50d9b80f0d7582421a67eb6c72) Thanks [@mrdavidjcole](https://github.com/mrdavidjcole)! - feat(ScrollArea): add locked prop to ScrollArea
911
+
912
+ ## 0.15.2
913
+
914
+ ### Patch Changes
915
+
916
+ - [#3122](https://github.com/wistia/vhs/pull/3122) [`2a59794`](https://github.com/wistia/vhs/commit/2a597947497276275dbbe843f38876a1e1106a20) Thanks [@okize](https://github.com/okize)! - fix: remove `href` from default Tag in Combobox
917
+
918
+ ## 0.15.1
919
+
920
+ ### Patch Changes
921
+
922
+ - [#3104](https://github.com/wistia/vhs/pull/3104) [`ea6e193`](https://github.com/wistia/vhs/commit/ea6e19395dad393f13f5144c3c24587b554cad5e) Thanks [@jetpackjarrett](https://github.com/jetpackjarrett)! - feat: Modal footer and Modal value props
923
+
924
+ ## 0.15.0
925
+
926
+ ### Minor Changes
927
+
928
+ - [#3101](https://github.com/wistia/vhs/pull/3101) [`7931f7b`](https://github.com/wistia/vhs/commit/7931f7bbfbdc618c447c081504bf5c52c51273cd) Thanks [@okize](https://github.com/okize)! - feat!: drop react-router-dom v6/v7 in favor of react-router v7
929
+
930
+ ## 0.14.41
931
+
932
+ ### Patch Changes
933
+
934
+ - [#3099](https://github.com/wistia/vhs/pull/3099) [`a88aae8`](https://github.com/wistia/vhs/commit/a88aae835a6ec716c265b5dec2932e0b8fb7f477) Thanks [@okize](https://github.com/okize)! - fix(EditableText): the `for` attr of `label` should only be present in DOM when the `input` is present
935
+
936
+ ## 0.14.40
937
+
938
+ ### Patch Changes
939
+
940
+ - [#3105](https://github.com/wistia/vhs/pull/3105) [`b2b25e6`](https://github.com/wistia/vhs/commit/b2b25e608705f7695123f7253db5474ad8ec9172) Thanks [@Flibbon](https://github.com/Flibbon)! - Add onOpenChange to Select props
941
+
942
+ ## 0.14.39
943
+
944
+ ### Patch Changes
945
+
946
+ - [#3092](https://github.com/wistia/vhs/pull/3092) [`90d782d`](https://github.com/wistia/vhs/commit/90d782dd8ba350b5edc22bf51883b905eba10930) Thanks [@JLamp](https://github.com/JLamp)! - refactor(Color Schemes): simplify how color schemes get created
947
+
948
+ ## 0.14.38
949
+
950
+ ### Patch Changes
951
+
952
+ - [#3081](https://github.com/wistia/vhs/pull/3081) [`05c5fb6`](https://github.com/wistia/vhs/commit/05c5fb69c86fb6628a0e4fa81b93bbefaf883312) Thanks [@okize](https://github.com/okize)! - fix: avoid importing `ReactRouterLinkProps` since older versions of react-router-dom do not have it
953
+
954
+ ## 0.14.37
955
+
956
+ ### Patch Changes
957
+
958
+ - [#3066](https://github.com/wistia/vhs/pull/3066) [`ab9d760`](https://github.com/wistia/vhs/commit/ab9d76062f44dd7693d50ca477d53c6e58b67bab) Thanks [@jetpackjarrett](https://github.com/jetpackjarrett)! - feat: SplitButton
959
+
960
+ ## 0.14.36
961
+
962
+ ### Patch Changes
963
+
964
+ - [#3079](https://github.com/wistia/vhs/pull/3079) [`1f4fb92`](https://github.com/wistia/vhs/commit/1f4fb92644397595c85e124e9be434f669a2aa45) Thanks [@JLamp](https://github.com/JLamp)! - feat(Select): update styling to match Menu & RadioMenuItem
965
+
966
+ ## 0.14.35
967
+
968
+ ### Patch Changes
969
+
970
+ - [#3088](https://github.com/wistia/vhs/pull/3088) [`b189a9d`](https://github.com/wistia/vhs/commit/b189a9d93a52e8b0c457671d94a6a45ba39dcd64) Thanks [@mrdavidjcole](https://github.com/mrdavidjcole)! - fix(Icon): harden icon dimensions against being controlled by flex parent
971
+
972
+ - [#3052](https://github.com/wistia/vhs/pull/3052) [`de2a898`](https://github.com/wistia/vhs/commit/de2a89860eddae7e6aa2f3bbafb4e4e43bbbab91) Thanks [@okize](https://github.com/okize)! - fix: instead of warning when UIProvider is nested return children and do not instantiate the providers
973
+
974
+ ## 0.14.34
975
+
976
+ ### Patch Changes
977
+
978
+ - [#3080](https://github.com/wistia/vhs/pull/3080) [`8ba0ed8`](https://github.com/wistia/vhs/commit/8ba0ed8587aa72a6fa1c36d3caf8a08317818281) Thanks [@JLamp](https://github.com/JLamp)! - feat(Combobox): update styling
979
+
980
+ ## 0.14.33
981
+
982
+ ### Patch Changes
983
+
984
+ - [#3077](https://github.com/wistia/vhs/pull/3077) [`645dddb`](https://github.com/wistia/vhs/commit/645dddb89438a1de88a1ac7185d2aef300f41797) Thanks [@mrdavidjcole](https://github.com/mrdavidjcole)! - feat(Switch): align to top rather than center in Switch component
985
+
986
+ ## 0.14.32
987
+
988
+ ### Patch Changes
989
+
990
+ - [#3075](https://github.com/wistia/vhs/pull/3075) [`091f9fb`](https://github.com/wistia/vhs/commit/091f9fba1817217ce474ecf3344a5b77b8a2884d) Thanks [@mrdavidjcole](https://github.com/mrdavidjcole)! - chore(ListItem): export ListItem component
991
+
992
+ ## 0.14.31
993
+
994
+ ### Patch Changes
995
+
996
+ - [#3067](https://github.com/wistia/vhs/pull/3067) [`63a1ea7`](https://github.com/wistia/vhs/commit/63a1ea745937b5bb756534d307080290dec227b8) Thanks [@okize](https://github.com/okize)! - fix: prevent EditableText & EditableHeading input from being resizable
997
+
998
+ ## 0.14.30
999
+
1000
+ ### Patch Changes
1001
+
1002
+ - [#3060](https://github.com/wistia/vhs/pull/3060) [`76c65e7`](https://github.com/wistia/vhs/commit/76c65e7b3e6169064cc007e2f5e85a71f0d68e37) Thanks [@mrdavidjcole](https://github.com/mrdavidjcole)! - fix(ScrollArea): remove unnecesary styles which changed containing block
1003
+
1004
+ ## 0.14.29
1005
+
1006
+ ### Patch Changes
1007
+
1008
+ - [#3053](https://github.com/wistia/vhs/pull/3053) [`0b3be76`](https://github.com/wistia/vhs/commit/0b3be76ded8b26aa6fe60dd986f77674ad363826) Thanks [@mrdavidjcole](https://github.com/mrdavidjcole)! - feat(ContextMenu): support side prop, avoid collisions with viewport
1009
+
1010
+ ## 0.14.28
1011
+
1012
+ ### Patch Changes
1013
+
1014
+ - [#3047](https://github.com/wistia/vhs/pull/3047) [`6ae9ae7`](https://github.com/wistia/vhs/commit/6ae9ae7a6c48fe9b014bb6695eb9add119b0e4cc) Thanks [@mrdavidjcole](https://github.com/mrdavidjcole)! - feat(ScrollArea): add ScrollArea component
1015
+
1016
+ ## 0.14.27
1017
+
1018
+ ### Patch Changes
1019
+
1020
+ - [#3018](https://github.com/wistia/vhs/pull/3018) [`ab1ec66`](https://github.com/wistia/vhs/commit/ab1ec66217c3da133aefad013c6d1c325325fd7d) Thanks [@JLamp](https://github.com/JLamp)! - fix(Banner): prevent collapsing when there are no buttons
1021
+
1022
+ ## 0.14.26
1023
+
1024
+ ### Patch Changes
1025
+
1026
+ - [#3045](https://github.com/wistia/vhs/pull/3045) [`1b9d71a`](https://github.com/wistia/vhs/commit/1b9d71a79ab5505ea6fd0ee13af2d869607ddc6f) Thanks [@jhugs](https://github.com/jhugs)! - feat: add responsive support to the following props for the Box component: alignSelf, basis, flexMode, grow, height, inline, shrink, wrapItems, and width.
1027
+
1028
+ ## 0.14.25
1029
+
1030
+ ### Patch Changes
1031
+
1032
+ - [#3039](https://github.com/wistia/vhs/pull/3039) [`f6e5506`](https://github.com/wistia/vhs/commit/f6e55062136688974961b11f06439f05cbb7c138) Thanks [@okize](https://github.com/okize)! - feat: make `orientation` a responsive prop in `Divider` component
1033
+
1034
+ ## 0.14.24
1035
+
1036
+ ### Patch Changes
1037
+
1038
+ - [#3017](https://github.com/wistia/vhs/pull/3017) [`d1d9f0c`](https://github.com/wistia/vhs/commit/d1d9f0c17a3d5f49971534903726a93605ae8b61) Thanks [@JLamp](https://github.com/JLamp)! - feat(Mark): Add `Mark` component
1039
+
1040
+ ## 0.14.23
1041
+
1042
+ ### Patch Changes
1043
+
1044
+ - [#3014](https://github.com/wistia/vhs/pull/3014) [`4d14e33`](https://github.com/wistia/vhs/commit/4d14e33e446aa858717d3d75b4348f1539ea46ad) Thanks [@andrewdang17](https://github.com/andrewdang17)! - update checkbox position property
1045
+
1046
+ ## 0.14.22
1047
+
1048
+ ### Patch Changes
1049
+
1050
+ - [#3011](https://github.com/wistia/vhs/pull/3011) [`d21aa5b`](https://github.com/wistia/vhs/commit/d21aa5b26f6088151dac0cbd87dfc80d36b917e5) Thanks [@kevin-jacobson-at-wistia](https://github.com/kevin-jacobson-at-wistia)! - fix: Correct vertical centering for scrubbing
1051
+
1052
+ ## 0.14.21
1053
+
1054
+ ### Patch Changes
1055
+
1056
+ - [#2968](https://github.com/wistia/vhs/pull/2968) [`e612474`](https://github.com/wistia/vhs/commit/e61247430c8b4e8fcf3fbf61975b6cbcf6242e1a) Thanks [@JLamp](https://github.com/JLamp)! - feat(EditableText): add `EditableText` component
1057
+
1058
+ ## 0.14.20
1059
+
1060
+ ### Patch Changes
1061
+
1062
+ - [#3007](https://github.com/wistia/vhs/pull/3007) [`a1e4743`](https://github.com/wistia/vhs/commit/a1e47436ad0f7e0e24a798618ade787e9db34ac5) Thanks [@kevin-jacobson-at-wistia](https://github.com/kevin-jacobson-at-wistia)! - Verically center storyboard frames when scrubbing
1063
+
1064
+ ## 0.14.19
1065
+
1066
+ ### Patch Changes
1067
+
1068
+ - [#3002](https://github.com/wistia/vhs/pull/3002) [`97021d1`](https://github.com/wistia/vhs/commit/97021d1acb9e901712c37e3829c429dcbd9d719e) Thanks [@okize](https://github.com/okize)! - fix: `.select()` is not valid on a Textarea so ensure Input type is not `multiline`
1069
+
1070
+ ## 0.14.18
1071
+
1072
+ ### Patch Changes
1073
+
1074
+ - [#2987](https://github.com/wistia/vhs/pull/2987) [`1cc2019`](https://github.com/wistia/vhs/commit/1cc201925ae35c8ee6844ee24ba85f8293c3b19d) Thanks [@JLamp](https://github.com/JLamp)! - feat(Checkbox, Radio, Switch): update styling
1075
+
1076
+ ## 0.14.17
1077
+
1078
+ ### Patch Changes
1079
+
1080
+ - [#2989](https://github.com/wistia/vhs/pull/2989) [`62a0940`](https://github.com/wistia/vhs/commit/62a094057c532c916d5f5759670e72e6f3fb2a07) Thanks [@JLamp](https://github.com/JLamp)! - feat(CSSReset): remove default margin from `dl`
1081
+
1082
+ ## 0.14.16
1083
+
1084
+ ### Patch Changes
1085
+
1086
+ - [#2988](https://github.com/wistia/vhs/pull/2988) [`035db0a`](https://github.com/wistia/vhs/commit/035db0a5c2c106aa8f1b3c41cccc6b16c82b13bc) Thanks [@JLamp](https://github.com/JLamp)! - feat(Toast): add line height and normal word breaking to message
1087
+
1088
+ ## 0.14.15
1089
+
1090
+ ### Patch Changes
1091
+
1092
+ - [#2982](https://github.com/wistia/vhs/pull/2982) [`04f98c4`](https://github.com/wistia/vhs/commit/04f98c447e49097f3dffb43c648240f410c3670d) Thanks [@okize](https://github.com/okize)! - feat: add colorScheme prop to ProgessBar
1093
+
1094
+ ## 0.14.14
1095
+
1096
+ ### Patch Changes
1097
+
1098
+ - [#2985](https://github.com/wistia/vhs/pull/2985) [`bb6f589`](https://github.com/wistia/vhs/commit/bb6f5898ddde45576c3fac8ec245e99a70c798d7) Thanks [@joshuapeters](https://github.com/joshuapeters)! - Updated CollapsibleTriggerIcon to expose all Icon props instead of just the type override
1099
+
1100
+ - [#2980](https://github.com/wistia/vhs/pull/2980) [`acf738a`](https://github.com/wistia/vhs/commit/acf738ad991f589585bfb6c0d81d6cee013c88bc) Thanks [@jetpackjarrett](https://github.com/jetpackjarrett)! - feat: DataList
1101
+
1102
+ - [#2981](https://github.com/wistia/vhs/pull/2981) [`4b12907`](https://github.com/wistia/vhs/commit/4b12907b47bdfafa7924aa8ab235ad9d290a0ea6) Thanks [@jetpackjarrett](https://github.com/jetpackjarrett)! - fix: have Link inherit font from parent
1103
+
1104
+ ## 0.14.13
1105
+
1106
+ ### Patch Changes
1107
+
1108
+ - [#2972](https://github.com/wistia/vhs/pull/2972) [`0b104b5`](https://github.com/wistia/vhs/commit/0b104b51d6bc20054db7d336af59306e1415623e) Thanks [@JLamp](https://github.com/JLamp)! - fix(InputClickToCopy): change click target
1109
+
1110
+ ## 0.14.12
1111
+
1112
+ ### Patch Changes
1113
+
1114
+ - [#2976](https://github.com/wistia/vhs/pull/2976) [`1d32014`](https://github.com/wistia/vhs/commit/1d320140158013ecc1d4032a76eadd32863077b2) Thanks [@mrdavidjcole](https://github.com/mrdavidjcole)! - fix(RadioGroup): only make Radio/RadioCard checked if value matches RadioGroup value exactly
1115
+
1116
+ - [#2978](https://github.com/wistia/vhs/pull/2978) [`4a4bb3c`](https://github.com/wistia/vhs/commit/4a4bb3c306759b204e50a2627af9ae0eb64a2fb0) Thanks [@mrdavidjcole](https://github.com/mrdavidjcole)! - fix(CheckboxGroup): update properly when value prop changes from outside interaction
1117
+
1118
+ ## 0.14.11
1119
+
1120
+ ### Patch Changes
1121
+
1122
+ - [#2974](https://github.com/wistia/vhs/pull/2974) [`a1113da`](https://github.com/wistia/vhs/commit/a1113dab058927c07ebe6e5bafee7fe83e304846) Thanks [@its-swats](https://github.com/its-swats)! - Allow the Menu component's onInteractOutside prop to trigger
1123
+
1124
+ ## 0.14.10
1125
+
1126
+ ### Patch Changes
1127
+
1128
+ - [#2971](https://github.com/wistia/vhs/pull/2971) [`480fbf3`](https://github.com/wistia/vhs/commit/480fbf314566acb59904d8dadc5db51baa70c3b1) Thanks [@mrdavidjcole](https://github.com/mrdavidjcole)! - feat(RadioCard): let RadioCard take children
1129
+
1130
+ ## 0.14.9
1131
+
1132
+ ### Patch Changes
1133
+
1134
+ - [#2967](https://github.com/wistia/vhs/pull/2967) [`ae36854`](https://github.com/wistia/vhs/commit/ae368549269f43ab80a13780219907b69a30e652) Thanks [@zachmccleaf](https://github.com/zachmccleaf)! - updated position of close button in Modal
1135
+
1136
+ ## 0.14.8
1137
+
1138
+ ### Patch Changes
1139
+
1140
+ - [#2965](https://github.com/wistia/vhs/pull/2965) [`bb7386e`](https://github.com/wistia/vhs/commit/bb7386e7da7d007032ff712b6c126e4699bb8ba3) Thanks [@mrdavidjcole](https://github.com/mrdavidjcole)! - feat(Icon): add `layout` icon
1141
+
1142
+ ## 0.14.7
1143
+
1144
+ ### Patch Changes
1145
+
1146
+ - [#2961](https://github.com/wistia/vhs/pull/2961) [`4035aa0`](https://github.com/wistia/vhs/commit/4035aa07a7d35cacface71dae72ac71fcff49998) Thanks [@mrdavidjcole](https://github.com/mrdavidjcole)! - fix(ColorPicker): avoid hue wobble under perf strain, and coerce externally updated value prop to accessible when required
1147
+
1148
+ ## 0.14.6
1149
+
1150
+ ### Patch Changes
1151
+
1152
+ - [#2958](https://github.com/wistia/vhs/pull/2958) [`da53337`](https://github.com/wistia/vhs/commit/da53337f70845eade7af9723bf9c9d8d9b93c520) Thanks [@mrdavidjcole](https://github.com/mrdavidjcole)! - refactor(ColorPicker): do not bake padding into ColorPicker parts, for styling ease when composing them
1153
+
1154
+ ## 0.14.5
1155
+
1156
+ ### Patch Changes
1157
+
1158
+ - [#2956](https://github.com/wistia/vhs/pull/2956) [`b410632`](https://github.com/wistia/vhs/commit/b410632a346d278d1b32530764bb12f2cc550933) Thanks [@kevin-jacobson-at-wistia](https://github.com/kevin-jacobson-at-wistia)! - Do not omit the year from date output if timeAgoString is passed includeTime as false
1159
+
1160
+ ## 0.14.4
1161
+
1162
+ ### Patch Changes
1163
+
1164
+ - [#2954](https://github.com/wistia/vhs/pull/2954) [`8526091`](https://github.com/wistia/vhs/commit/8526091a7079c116f615210d76093ed1ade85876) Thanks [@mrdavidjcole](https://github.com/mrdavidjcole)! - fix(ColorPicker): handle value prop external updates properly, fix sliders showing wrong color
1165
+
1166
+ ## 0.14.3
1167
+
1168
+ ### Patch Changes
1169
+
1170
+ - [#2952](https://github.com/wistia/vhs/pull/2952) [`c96312c`](https://github.com/wistia/vhs/commit/c96312c95ce4c702000b72bb6b083076bc459706) Thanks [@mrdavidjcole](https://github.com/mrdavidjcole)! - fix(ColorPicker): fix selected color option not appearing selected due to case sensitivity
1171
+
1172
+ ## 0.14.2
1173
+
1174
+ ### Patch Changes
1175
+
1176
+ - [#2950](https://github.com/wistia/vhs/pull/2950) [`943dd52`](https://github.com/wistia/vhs/commit/943dd5225ae69205ad3f1b3cbc14bfca9a6944dd) Thanks [@mrdavidjcole](https://github.com/mrdavidjcole)! - feat(ColorPicker): add support for a label prop for ColorGrid
1177
+
1178
+ ## 0.14.1
1179
+
1180
+ ### Patch Changes
1181
+
1182
+ - [#2948](https://github.com/wistia/vhs/pull/2948) [`76fa9f1`](https://github.com/wistia/vhs/commit/76fa9f11e4cf02a785feca893e7069288f0bc65f) Thanks [@mrdavidjcole](https://github.com/mrdavidjcole)! - fix(ColorPicker): don't call onValueChange on initial render
1183
+
1184
+ ## 0.14.0
1185
+
1186
+ ### Minor Changes
1187
+
1188
+ - [#2937](https://github.com/wistia/vhs/pull/2937) [`63f601b`](https://github.com/wistia/vhs/commit/63f601b0f098150f6533955d05f9eeb4a0f25f7f) Thanks [@kevin-jacobson-at-wistia](https://github.com/kevin-jacobson-at-wistia)! - Added optional parameter `includeTime` (default: true) to `timeAgoString`
1189
+
1190
+ ## 0.13.13
1191
+
1192
+ ### Patch Changes
1193
+
1194
+ - [#2944](https://github.com/wistia/vhs/pull/2944) [`25d7a9a`](https://github.com/wistia/vhs/commit/25d7a9af9228e21f45a0b40fceb01c8f5eeb6bf3) Thanks [@mrdavidjcole](https://github.com/mrdavidjcole)! - fix(ColorPicker): fix wobble in thumb of SaturationAndValuePicker thumb when contrast enforcement enabled
1195
+
1196
+ ## 0.13.12
1197
+
1198
+ ### Patch Changes
1199
+
1200
+ - [#2936](https://github.com/wistia/vhs/pull/2936) [`e709c66`](https://github.com/wistia/vhs/commit/e709c66a8849e39ed492fb96f6dd2bf3e90d4b18) Thanks [@JLamp](https://github.com/JLamp)! - feat(Icon): add inline styles
1201
+
1202
+ ## 0.13.11
1203
+
1204
+ ### Patch Changes
1205
+
1206
+ - [#2934](https://github.com/wistia/vhs/pull/2934) [`76cfb80`](https://github.com/wistia/vhs/commit/76cfb80e266b0c336b5fbca8369ca63ea3ab547b) Thanks [@mrdavidjcole](https://github.com/mrdavidjcole)! - feat(ColorPicker): export calculateContrast utility, tweak contrast display
1207
+
1208
+ ## 0.13.10
1209
+
1210
+ ### Patch Changes
1211
+
1212
+ - [#2922](https://github.com/wistia/vhs/pull/2922) [`bcb9b45`](https://github.com/wistia/vhs/commit/bcb9b45b89ef4d13e24caafcccb697d126e73ed2) Thanks [@JLamp](https://github.com/JLamp)! - feat(DataCard): add visual styles for `aria-pressed`
1213
+
1214
+ ## 0.13.9
1215
+
1216
+ ### Patch Changes
1217
+
1218
+ - [#2916](https://github.com/wistia/vhs/pull/2916) [`650bb90`](https://github.com/wistia/vhs/commit/650bb90ee57c063fdd270f9b0b0fa2c488ab5fd6) Thanks [@JLamp](https://github.com/JLamp)! - feat(Grid): add `expandItems` prop
1219
+
1220
+ ## 0.13.8
1221
+
1222
+ ### Patch Changes
1223
+
1224
+ - [#2931](https://github.com/wistia/vhs/pull/2931) [`737285f`](https://github.com/wistia/vhs/commit/737285fcba4f542bbe689a68d51616da7390aaf3) Thanks [@okize](https://github.com/okize)! - fix: set z-index value for Popover component
1225
+
1226
+ ## 0.13.7
1227
+
1228
+ ### Patch Changes
1229
+
1230
+ - [#2928](https://github.com/wistia/vhs/pull/2928) [`50315f4`](https://github.com/wistia/vhs/commit/50315f4212b25d740afbda58a419981b545c49f6) Thanks [@mrdavidjcole](https://github.com/mrdavidjcole)! - fix(ColorPicker): fix flicker in color swatch of ColorGridOption and ColorListOption on select
1231
+
1232
+ ## 0.13.6
1233
+
1234
+ ### Patch Changes
1235
+
1236
+ - [#2924](https://github.com/wistia/vhs/pull/2924) [`d78979f`](https://github.com/wistia/vhs/commit/d78979f16db06c29dab34945aa4b479f7958ee21) Thanks [@mrdavidjcole](https://github.com/mrdavidjcole)! - feat(ColorPicker): add support for opacityForContrastCalculation prop
1237
+
1238
+ ## 0.13.5
1239
+
1240
+ ### Patch Changes
1241
+
1242
+ - [#2921](https://github.com/wistia/vhs/pull/2921) [`a0a3158`](https://github.com/wistia/vhs/commit/a0a3158b949bc1ba2def5e3a9d7757beec2eb895) Thanks [@mrdavidjcole](https://github.com/mrdavidjcole)! - Simplify ColorPicker state management and color conversion, handle prop updates properly
1243
+
1244
+ - [#2904](https://github.com/wistia/vhs/pull/2904) [`8e7ec5e`](https://github.com/wistia/vhs/commit/8e7ec5e27e3f21abee671654da5b8e5469023ddf) Thanks [@PatriceDouge](https://github.com/PatriceDouge)! - DataCard now supports a `subtitle` prop for additional text/details below the card value
1245
+
1246
+ ## 0.13.4
1247
+
1248
+ ### Patch Changes
1249
+
1250
+ - [#2901](https://github.com/wistia/vhs/pull/2901) [`bfadd50`](https://github.com/wistia/vhs/commit/bfadd50f8001f1b7d90de2a0eb445058e54f2b0e) Thanks [@jpepper-wistia](https://github.com/jpepper-wistia)! - feat: DataCard now supports `reloadDocument` prop for hard reloading
1251
+
1252
+ ## 0.13.3
1253
+
1254
+ ### Patch Changes
1255
+
1256
+ - [#2844](https://github.com/wistia/vhs/pull/2844) [`1e4a697`](https://github.com/wistia/vhs/commit/1e4a697b1dfee7d04720d2082100cd3c10e63db6) Thanks [@mrdavidjcole](https://github.com/mrdavidjcole)! - Add ColorPicker component
1257
+
1258
+ - [#2899](https://github.com/wistia/vhs/pull/2899) [`7f8358a`](https://github.com/wistia/vhs/commit/7f8358adbf1261f2bdf340e5c55f80c92632692d) Thanks [@JLamp](https://github.com/JLamp)! - feat(Heading): add `prominence` prop
1259
+
1260
+ ## 0.13.2
1261
+
1262
+ ### Patch Changes
1263
+
1264
+ - [#2892](https://github.com/wistia/vhs/pull/2892) [`f43ee14`](https://github.com/wistia/vhs/commit/f43ee14f1e2fa859b68efccc56ea4114854fd4a4) Thanks [@jpepper-wistia](https://github.com/jpepper-wistia)! - feat(EditableHeader): `variant` prop added to change heading style
1265
+
1266
+ ## 0.13.1
1267
+
1268
+ ### Patch Changes
1269
+
1270
+ - [#2881](https://github.com/wistia/vhs/pull/2881) [`46d0448`](https://github.com/wistia/vhs/commit/46d04487564185d4cc3152839b854fb9dec85cfa) Thanks [@jetpackjarrett](https://github.com/jetpackjarrett)! - feat: Context Menu
1271
+
1272
+ - [#2879](https://github.com/wistia/vhs/pull/2879) [`197ecf6`](https://github.com/wistia/vhs/commit/197ecf640931147305f8621b5deb082113f44455) Thanks [@JLamp](https://github.com/JLamp)! - feat(FormGroup): add `description` prop
1273
+
1274
+ ## 0.13.0
1275
+
1276
+ ### Minor Changes
1277
+
1278
+ - [#2883](https://github.com/wistia/vhs/pull/2883) [`6f209bc`](https://github.com/wistia/vhs/commit/6f209bcbf949ec01178e0d81771ab289bccd9089) Thanks [@JLamp](https://github.com/JLamp)! - feat!(Grid): update default `gap` property
1279
+
1280
+ ## 0.12.2
1281
+
1282
+ ### Patch Changes
1283
+
1284
+ - [#2884](https://github.com/wistia/vhs/pull/2884) [`494bfca`](https://github.com/wistia/vhs/commit/494bfcae11e6b6ace4c11784fa32b9db566cbfa2) Thanks [@JLamp](https://github.com/JLamp)! - feat(RadioCard): add RadioCard and RadioCardImage component
1285
+
1286
+ ## 0.12.1
1287
+
1288
+ ### Patch Changes
1289
+
1290
+ - [#2876](https://github.com/wistia/vhs/pull/2876) [`cfe00ff`](https://github.com/wistia/vhs/commit/cfe00ff148d1867ef7541a33a26a06d9cbce3e85) Thanks [@JLamp](https://github.com/JLamp)! - feat(Grid): add ref forwarding and renderAs prop
1291
+
1292
+ ## 0.12.0
1293
+
1294
+ ### Minor Changes
1295
+
1296
+ - [#2864](https://github.com/wistia/vhs/pull/2864) [`1b1d33f`](https://github.com/wistia/vhs/commit/1b1d33f59bd267b99fa7b2851b48f6ef383f080c) Thanks [@JLamp](https://github.com/JLamp)! - fix(Thumbnail)!: update default prop for `thumbnailImageType`
1297
+
1298
+ ## 0.11.7
1299
+
1300
+ ### Patch Changes
1301
+
1302
+ - [#2861](https://github.com/wistia/vhs/pull/2861) [`4187c2d`](https://github.com/wistia/vhs/commit/4187c2dfe7ed78f392502147d2381beb82089154) Thanks [@JLamp](https://github.com/JLamp)! - feat(Icon): add `add-folder` icon
1303
+
1304
+ ## 0.11.6
1305
+
1306
+ ### Patch Changes
1307
+
1308
+ - [#2849](https://github.com/wistia/vhs/pull/2849) [`8ebbb7d`](https://github.com/wistia/vhs/commit/8ebbb7d0219fb7ba5bce46d19a5ef5cf65c7dcf5) Thanks [@JLamp](https://github.com/JLamp)! - feat(Grid): add `Grid` component
1309
+
1310
+ ## 0.11.5
1311
+
1312
+ ### Patch Changes
1313
+
1314
+ - [#2853](https://github.com/wistia/vhs/pull/2853) [`56a3e3a`](https://github.com/wistia/vhs/commit/56a3e3a72f34c3a22f01475031e129c1067ccf36) Thanks [@JLamp](https://github.com/JLamp)! - fix(Spacing): add `px` value to `space-00`
1315
+
1316
+ ## 0.11.4
1317
+
1318
+ ### Patch Changes
1319
+
1320
+ - [#2854](https://github.com/wistia/vhs/pull/2854) [`6f6ec63`](https://github.com/wistia/vhs/commit/6f6ec633b4c3dd7caafa8ed123e0d2a61140aee8) Thanks [@joshuapeters](https://github.com/joshuapeters)! - Fix styling inconsistencies with FormField validation errors
1321
+
1322
+ ## 0.11.3
1323
+
1324
+ ### Patch Changes
1325
+
1326
+ - [#2850](https://github.com/wistia/vhs/pull/2850) [`26e099e`](https://github.com/wistia/vhs/commit/26e099efa100f8458fa8ab6abb979c26ba4ef7d0) Thanks [@JLamp](https://github.com/JLamp)! - fix(Button, IconButton): removes solid background for disabled `ghost` and `outline` variants
1327
+
1328
+ ## 0.11.2
1329
+
1330
+ ### Patch Changes
1331
+
1332
+ - [#2834](https://github.com/wistia/vhs/pull/2834) [`26c523a`](https://github.com/wistia/vhs/commit/26c523a6840b2af9fe03fef3bad9919c68bc700c) Thanks [@crysfelw](https://github.com/crysfelw)! - add `light-bulb` icon
1333
+
1334
+ ## 0.11.1
1335
+
1336
+ ### Patch Changes
1337
+
1338
+ - [#2832](https://github.com/wistia/vhs/pull/2832) [`77b1202`](https://github.com/wistia/vhs/commit/77b120272e10ed3b6b83ea4218bcd776257fcc1e) Thanks [@okize](https://github.com/okize)! - fix: ensure Thumbnails w/ storyboard props work with a wrapped Link
1339
+
1340
+ ## 0.11.0
1341
+
1342
+ ### Minor Changes
1343
+
1344
+ - [#2819](https://github.com/wistia/vhs/pull/2819) [`f17908a`](https://github.com/wistia/vhs/commit/f17908a2873ddf8923f1a8d3a13718ceda67e6d2) Thanks [@JLamp](https://github.com/JLamp)! - feat(Modals)!: replace alignment props with set variants
1345
+
1346
+ ## 0.10.18
1347
+
1348
+ ### Patch Changes
1349
+
1350
+ - [#2828](https://github.com/wistia/vhs/pull/2828) [`57d33ac`](https://github.com/wistia/vhs/commit/57d33ac5fbd942dd0e1a8cc01430b50e6aab30e7) Thanks [@okize](https://github.com/okize)! - feat: add InputPassword component
1351
+
1352
+ ## 0.10.17
1353
+
1354
+ ### Patch Changes
1355
+
1356
+ - [#2825](https://github.com/wistia/vhs/pull/2825) [`5965dc9`](https://github.com/wistia/vhs/commit/5965dc9284ab00426ebbaa8407c2ab506e880fab) Thanks [@joshuapeters](https://github.com/joshuapeters)! - Fix issue with avatar in which larger, landscape images do not cover the avatar component properly
1357
+
1358
+ ## 0.10.16
1359
+
1360
+ ### Patch Changes
1361
+
1362
+ - [#2717](https://github.com/wistia/vhs/pull/2717) [`fbd5b7b`](https://github.com/wistia/vhs/commit/fbd5b7b9308c32c7896c1bcc0567e5301640a452) Thanks [@jetpackjarrett](https://github.com/jetpackjarrett)! - feat: FilterMenu
1363
+
1364
+ ## 0.10.15
1365
+
1366
+ ### Patch Changes
1367
+
1368
+ - [#2777](https://github.com/wistia/vhs/pull/2777) [`f51897c`](https://github.com/wistia/vhs/commit/f51897ce2ef971c097165c88471d1bf7c37da4d2) Thanks [@JLamp](https://github.com/JLamp)! - feat(ColorScheme): update `nav` border colors
1369
+
1370
+ ## 0.10.14
1371
+
1372
+ ### Patch Changes
1373
+
1374
+ - [#2800](https://github.com/wistia/vhs/pull/2800) [`594603c`](https://github.com/wistia/vhs/commit/594603c7285ba89478198c789cd2ac1dec04d289) Thanks [@JLamp](https://github.com/JLamp)! - fix(Tabs, SegmentedControl): improved fix of initial load transition of the SelectedItemIndicator
1375
+
1376
+ ## 0.10.13
1377
+
1378
+ ### Patch Changes
1379
+
1380
+ - [#2796](https://github.com/wistia/vhs/pull/2796) [`71d1373`](https://github.com/wistia/vhs/commit/71d137302436fc6daaaa6e82bef3ca2ee28ab4b5) Thanks [@JLamp](https://github.com/JLamp)! - fix(Tabs, SegmentedControl): fix initial load transition of the SelectedItemIndicator
1381
+
1382
+ ## 0.10.12
1383
+
1384
+ ### Patch Changes
1385
+
1386
+ - [#2794](https://github.com/wistia/vhs/pull/2794) [`18ccf50`](https://github.com/wistia/vhs/commit/18ccf500503eeb1c15cdf6e7b7b0ce8b44fb0ea4) Thanks [@JLamp](https://github.com/JLamp)! - fix(Tabs, SegmentedControl): show active state when item is wrapped in Tooltip
1387
+
1388
+ ## 0.10.11
1389
+
1390
+ ### Patch Changes
1391
+
1392
+ - [#2758](https://github.com/wistia/vhs/pull/2758) [`935c48c`](https://github.com/wistia/vhs/commit/935c48c9e7df746f38abd7d1bbd2b0ac64df5df1) Thanks [@joshuapeters](https://github.com/joshuapeters)! - Fixes a style bug with forms not properly adhering to the `fullWidth` parameter.
1393
+
1394
+ - [#2757](https://github.com/wistia/vhs/pull/2757) [`e05c6c5`](https://github.com/wistia/vhs/commit/e05c6c5dbc8f2cb367c225e22da170393fd0e25f) Thanks [@jetpackjarrett](https://github.com/jetpackjarrett)! - Add defaultChecked states for radio and checkbox groups
1395
+
1396
+ ## 0.10.10
1397
+
1398
+ ### Patch Changes
1399
+
1400
+ - [#2772](https://github.com/wistia/vhs/pull/2772) [`b683a04`](https://github.com/wistia/vhs/commit/b683a0451549138923aff215df0f0f71a51382a5) Thanks [@okize](https://github.com/okize)! - fix: update type exports in `useFilePicker`
1401
+
1402
+ ## 0.10.9
1403
+
1404
+ ### Patch Changes
1405
+
1406
+ - [#2763](https://github.com/wistia/vhs/pull/2763) [`5de2369`](https://github.com/wistia/vhs/commit/5de236997a5ab28ec97297c35c4915192f2de736) Thanks [@okize](https://github.com/okize)! - feat: set `readFilesContent: false` as the default for useFilePicker config
1407
+
1408
+ ## 0.10.8
1409
+
1410
+ ### Patch Changes
1411
+
1412
+ - [#2755](https://github.com/wistia/vhs/pull/2755) [`ae639af`](https://github.com/wistia/vhs/commit/ae639afce34eced1d77a215bdb37e0d1615226ec) Thanks [@JLamp](https://github.com/JLamp)! - feat(Banner): add Banner component
1413
+
1414
+ ## 0.10.7
1415
+
1416
+ ### Patch Changes
1417
+
1418
+ - [#2759](https://github.com/wistia/vhs/pull/2759) [`fce6b47`](https://github.com/wistia/vhs/commit/fce6b47f93b429ff22d2d24b9303de9a3f77ce87) Thanks [@JLamp](https://github.com/JLamp)! - feat(Collapsible): add `CollapsibleTriggerIcon` subcomponent
1419
+
1420
+ ## 0.10.6
1421
+
1422
+ ### Patch Changes
1423
+
1424
+ - [#2743](https://github.com/wistia/vhs/pull/2743) [`5847a11`](https://github.com/wistia/vhs/commit/5847a110b49ee3070f9d13d90571d9a239fcf39c) Thanks [@okize](https://github.com/okize)! - feat: add a Slider component
1425
+
1426
+ ## 0.10.5
1427
+
1428
+ ### Patch Changes
1429
+
1430
+ - [#2749](https://github.com/wistia/vhs/pull/2749) [`7f64f8c`](https://github.com/wistia/vhs/commit/7f64f8c6c23e43e7fea96d7515abbf6bd642fb83) Thanks [@mrdavidjcole](https://github.com/mrdavidjcole)! - Adjust Badge styles to improve contrast and avoid unwanted style overrides
1431
+
1432
+ ## 0.10.4
1433
+
1434
+ ### Patch Changes
1435
+
1436
+ - [#2752](https://github.com/wistia/vhs/pull/2752) [`96f9783`](https://github.com/wistia/vhs/commit/96f97837bc754c1d483b9d7ce9b8022c57a8bf67) Thanks [@okize](https://github.com/okize)! - fix: ensure ComboboxOption is exported
1437
+
1438
+ ## 0.10.3
1439
+
1440
+ ### Patch Changes
1441
+
1442
+ - [#2709](https://github.com/wistia/vhs/pull/2709) [`aa8c941`](https://github.com/wistia/vhs/commit/aa8c941780a681fb16c5e76814cc1850ce818455) Thanks [@jetpackjarrett](https://github.com/jetpackjarrett)! - feat: Combobox
1443
+
1444
+ ## 0.10.2
1445
+
1446
+ ### Patch Changes
1447
+
1448
+ - [#2742](https://github.com/wistia/vhs/pull/2742) [`782a2b8`](https://github.com/wistia/vhs/commit/782a2b8c45482c4f62daac934ea1f2bf0ed82285) Thanks [@JLamp](https://github.com/JLamp)! - feat(useElementObserver): add `useElementObserver` hook
1449
+
1450
+ ## 0.10.1
1451
+
1452
+ ### Patch Changes
1453
+
1454
+ - [#2741](https://github.com/wistia/vhs/pull/2741) [`2b2283a`](https://github.com/wistia/vhs/commit/2b2283a1f1d98add54de4041b64fa2755803da08) Thanks [@JLamp](https://github.com/JLamp)! - feat(ButtonGroup): add `buttonSize` prop to control size of Buttons in ButtonGroup
1455
+
1456
+ ## 0.10.0
1457
+
1458
+ ### Minor Changes
1459
+
1460
+ - [#2696](https://github.com/wistia/vhs/pull/2696) [`6dae25c`](https://github.com/wistia/vhs/commit/6dae25c4fcf68a53a2b63aa55c5fe7a2ae5db385) Thanks [@mrdavidjcole](https://github.com/mrdavidjcole)! - Rewrite Tabs component for composability
1461
+
1462
+ ## 0.9.7
1463
+
1464
+ ### Patch Changes
1465
+
1466
+ - [#2718](https://github.com/wistia/vhs/pull/2718) [`2ab372f`](https://github.com/wistia/vhs/commit/2ab372fc37857c910dfee5ff84c28a0aec88f6bb) Thanks [@bim-kryant](https://github.com/bim-kryant)! - Added icons for Collections and Playlist
1467
+
1468
+ ## 0.9.6
1469
+
1470
+ ### Patch Changes
1471
+
1472
+ - [#2729](https://github.com/wistia/vhs/pull/2729) [`6169678`](https://github.com/wistia/vhs/commit/6169678fa9fc01637c21c61253045c9e858e1eb0) Thanks [@okize](https://github.com/okize)! - fix: ensure RadioGroup and CheckboxGroup work correctly by reading values from Context
1473
+
1474
+ ## 0.9.5
1475
+
1476
+ ### Patch Changes
1477
+
1478
+ - [#2732](https://github.com/wistia/vhs/pull/2732) [`41b0733`](https://github.com/wistia/vhs/commit/41b07330463b562769c0d593f7b627ff0070715c) Thanks [@okize](https://github.com/okize)! - fix: spread props on `SegmentedControlItem` to ensure `Tooltip` works as expected without need for wrapping `div` elements
1479
+
1480
+ ## 0.9.4
1481
+
1482
+ ### Patch Changes
1483
+
1484
+ - [#2724](https://github.com/wistia/vhs/pull/2724) [`b95661a`](https://github.com/wistia/vhs/commit/b95661ae7ef9ee1007cc03073fe6adb6da58be35) Thanks [@okize](https://github.com/okize)! - feat: add a vertical "scrubline" to Thumbnails with a storyboard
1485
+
1486
+ ## 0.9.3
1487
+
1488
+ ### Patch Changes
1489
+
1490
+ - [#2698](https://github.com/wistia/vhs/pull/2698) [`aec8918`](https://github.com/wistia/vhs/commit/aec891848354c36ec64b0afe14cdf939b3f68ed7) Thanks [@jetpackjarrett](https://github.com/jetpackjarrett)! - feat: clickable datacards
1491
+
1492
+ ## 0.9.2
1493
+
1494
+ ### Patch Changes
1495
+
1496
+ - [#2706](https://github.com/wistia/vhs/pull/2706) [`0d996cb`](https://github.com/wistia/vhs/commit/0d996cbc15b6e13fe9f20d9f12d24a38e110a511) Thanks [@JLamp](https://github.com/JLamp)! - fix(buttonResetCss): remove default button focus state
1497
+
1498
+ ## 0.9.1
1499
+
1500
+ ### Patch Changes
1501
+
1502
+ - [#2692](https://github.com/wistia/vhs/pull/2692) [`abd73b2`](https://github.com/wistia/vhs/commit/abd73b20062e571cb5170ef7b7d82e64bd78194e) Thanks [@okize](https://github.com/okize)! - feat: support "scrubbable" (storyboard) Thumbnails
1503
+
1504
+ ## 0.9.0
1505
+
1506
+ ### Minor Changes
1507
+
1508
+ - [#2712](https://github.com/wistia/vhs/pull/2712) [`1764319`](https://github.com/wistia/vhs/commit/17643193db5fd912be46e40e0d5f645b8ed57215) Thanks [@okize](https://github.com/okize)! - feat!: switch `underline` prop in `Link` from boolean to multi-state to support underline-on-hover
1509
+
1510
+ ## 0.8.28
1511
+
1512
+ ### Patch Changes
1513
+
1514
+ - [#2691](https://github.com/wistia/vhs/pull/2691) [`7d4caea`](https://github.com/wistia/vhs/commit/7d4caea13f4ec7f111281ae18ed6ef5254272149) Thanks [@okize](https://github.com/okize)! - feat: add `List` component to UI package
1515
+
1516
+ ## 0.8.27
1517
+
1518
+ ### Patch Changes
1519
+
1520
+ - [#2704](https://github.com/wistia/vhs/pull/2704) [`e0f5fd0`](https://github.com/wistia/vhs/commit/e0f5fd098d87bce543b45e097ad3a4f04f038dde) Thanks [@JLamp](https://github.com/JLamp)! - fix(ClickRegion): prevent more clickable elements from triggering proxied event
1521
+
1522
+ ## 0.8.26
1523
+
1524
+ ### Patch Changes
1525
+
1526
+ - [#2694](https://github.com/wistia/vhs/pull/2694) [`53eb227`](https://github.com/wistia/vhs/commit/53eb2272da4f2050635ed17ead3a44c0ef266d7b) Thanks [@JLamp](https://github.com/JLamp)! - feat(Menu): add collision padding to Menu to ensure it maintains distance from other elements
1527
+
1528
+ ## 0.8.25
1529
+
1530
+ ### Patch Changes
1531
+
1532
+ - [#2693](https://github.com/wistia/vhs/pull/2693) [`6012b83`](https://github.com/wistia/vhs/commit/6012b8328a074b05b58ae5b7ad566e6439cd705c) Thanks [@JLamp](https://github.com/JLamp)! - feat(Modal): add `alignHorizontal` and `alignVertical` props
1533
+
1534
+ ## 0.8.24
1535
+
1536
+ ### Patch Changes
1537
+
1538
+ - [#2690](https://github.com/wistia/vhs/pull/2690) [`c718d60`](https://github.com/wistia/vhs/commit/c718d604c51ebee6b26ec8e7c0e6070b2ccd80ae) Thanks [@zachmccleaf](https://github.com/zachmccleaf)! - add optional popover arrow and option animation if arrow is active
1539
+
1540
+ ## 0.8.23
1541
+
1542
+ ### Patch Changes
1543
+
1544
+ - [#2685](https://github.com/wistia/vhs/pull/2685) [`234411e`](https://github.com/wistia/vhs/commit/234411e34541f1e6d2baf17c5edfd579702ed68b) Thanks [@JLamp](https://github.com/JLamp)! - fix: prevent navigation when `Button` is disabled and has an `href`
1545
+
1546
+ ## 0.8.22
1547
+
1548
+ ### Patch Changes
1549
+
1550
+ - [#2683](https://github.com/wistia/vhs/pull/2683) [`a707ea5`](https://github.com/wistia/vhs/commit/a707ea5cd740d64e3f28f8d93add0e3f2c11852e) Thanks [@JLamp](https://github.com/JLamp)! - set aria-disabled to true for disabled Links
1551
+
1552
+ ## 0.8.21
1553
+
1554
+ ### Patch Changes
1555
+
1556
+ - [#2671](https://github.com/wistia/vhs/pull/2671) [`fbb8074`](https://github.com/wistia/vhs/commit/fbb80748a55329c86c0b3f3309792b8ebd3219b5) Thanks [@JLamp](https://github.com/JLamp)! - changes icon behavior in fullWidth Buttons to keep horizontally aligned with text
1557
+
1558
+ ## 0.8.20
1559
+
1560
+ ### Patch Changes
1561
+
1562
+ - [#2668](https://github.com/wistia/vhs/pull/2668) [`ea23ec9`](https://github.com/wistia/vhs/commit/ea23ec9bb7998ea1b23a4320c4b90f0cb7d14763) Thanks [@okize](https://github.com/okize)! - fix: update Link to have a different text color when disabled
1563
+
1564
+ ## 0.8.19
1565
+
1566
+ ### Patch Changes
1567
+
1568
+ - [#2657](https://github.com/wistia/vhs/pull/2657) [`4d5e012`](https://github.com/wistia/vhs/commit/4d5e012ff61e054ed70ddf386d322140f41224d0) Thanks [@okize](https://github.com/okize)! - feat: add useForceUpdate hook to UI package
1569
+
1570
+ ## 0.8.18
1571
+
1572
+ ### Patch Changes
1573
+
1574
+ - [#2651](https://github.com/wistia/vhs/pull/2651) [`da74f10`](https://github.com/wistia/vhs/commit/da74f109385342ffb647f7668cab80b21c1d1e68) Thanks [@okize](https://github.com/okize)! - feat: add usePreviousValue hook to UI package
1575
+
1576
+ ## 0.8.17
1577
+
1578
+ ### Patch Changes
1579
+
1580
+ - [#2634](https://github.com/wistia/vhs/pull/2634) [`4b8714f`](https://github.com/wistia/vhs/commit/4b8714f4fd0abe16a7628046a8df3d0161d385f4) Thanks [@okize](https://github.com/okize)! - fix: bump up z-index values for backdrop and modal
1581
+
1582
+ ## 0.8.16
1583
+
1584
+ ### Patch Changes
1585
+
1586
+ - [#2638](https://github.com/wistia/vhs/pull/2638) [`a87b996`](https://github.com/wistia/vhs/commit/a87b9966dce07dc8b57653310dab144be47f387d) Thanks [@okize](https://github.com/okize)! - feat: add useIsHovered hook to UI package
1587
+
1588
+ ## 0.8.15
1589
+
1590
+ ### Patch Changes
1591
+
1592
+ - [#2629](https://github.com/wistia/vhs/pull/2629) [`ba85505`](https://github.com/wistia/vhs/commit/ba855057cecb20264c75fd9f5614321dc268df42) Thanks [@okize](https://github.com/okize)! - feat: in `Box` component, make some props responsive
1593
+
1594
+ ## 0.8.14
1595
+
1596
+ ### Patch Changes
1597
+
1598
+ - [#2625](https://github.com/wistia/vhs/pull/2625) [`0a35198`](https://github.com/wistia/vhs/commit/0a351985ffa4815a16993879584f4328d0403449) Thanks [@okize](https://github.com/okize)! - feat: add visuallyHiddenHeader prop to Table component
1599
+
1600
+ ## 0.8.13
1601
+
1602
+ ### Patch Changes
1603
+
1604
+ - [#2619](https://github.com/wistia/vhs/pull/2619) [`1a21baa`](https://github.com/wistia/vhs/commit/1a21baa4a0cef07e61fec8ff791bfa76506a28b2) Thanks [@okize](https://github.com/okize)! - feat: add borderRadius prop to Card component
1605
+
1606
+ ## 0.8.12
1607
+
1608
+ ### Patch Changes
1609
+
1610
+ - [#2618](https://github.com/wistia/vhs/pull/2618) [`789f498`](https://github.com/wistia/vhs/commit/789f498952d2d5d477eed3730b1d768b1e2c24ef) Thanks [@jetpackjarrett](https://github.com/jetpackjarrett)! - Added responsive object prop types
1611
+
1612
+ ## 0.8.11
1613
+
1614
+ ### Patch Changes
1615
+
1616
+ - [#2616](https://github.com/wistia/vhs/pull/2616) [`43b433b`](https://github.com/wistia/vhs/commit/43b433b1ff3d9ee47bedd46c3db01bf96018526d) Thanks [@okize](https://github.com/okize)! - fix: do not remove `ToastProvider` in test environment
1617
+
1618
+ ## 0.8.10
1619
+
1620
+ ### Patch Changes
1621
+
1622
+ - [#2613](https://github.com/wistia/vhs/pull/2613) [`ecaf017`](https://github.com/wistia/vhs/commit/ecaf0173422dff5dff293b2088568ca59c808a14) Thanks [@okize](https://github.com/okize)! - fix: ensure icons work when Link returns a react-router Link
1623
+
1624
+ ## 0.8.9
1625
+
1626
+ ### Patch Changes
1627
+
1628
+ - [#2609](https://github.com/wistia/vhs/pull/2609) [`ae4909e`](https://github.com/wistia/vhs/commit/ae4909e1452ad23119ecb7553e48e6c663b00be8) Thanks [@okize](https://github.com/okize)! - feat: add ThumbnailCollage component to UI package
1629
+
1630
+ ## 0.8.8
1631
+
1632
+ ### Patch Changes
1633
+
1634
+ - [#2595](https://github.com/wistia/vhs/pull/2595) [`a82ad73`](https://github.com/wistia/vhs/commit/a82ad734e5d68bec910f900e2d65e03251226448) Thanks [@okize](https://github.com/okize)! - fix: before we assign `to` location, we want to check `shouldUseReactRouterLink`
1635
+
1636
+ ## 0.8.7
1637
+
1638
+ ### Patch Changes
1639
+
1640
+ - [#2583](https://github.com/wistia/vhs/pull/2583) [`8726e1b`](https://github.com/wistia/vhs/commit/8726e1b72b83fed910e1486bd9997da8c25b95d1) Thanks [@JLamp](https://github.com/JLamp)! - update default border radius, spacing in Card
1641
+
1642
+ ## 0.8.6
1643
+
1644
+ ### Patch Changes
1645
+
1646
+ - [#2443](https://github.com/wistia/vhs/pull/2443) [`b6d436c`](https://github.com/wistia/vhs/commit/b6d436ce07073c32b0b4d714df21c11bfa545709) Thanks [@mrdavidjcole](https://github.com/mrdavidjcole)! - Keep segmented control selected item indicator shadow within control
1647
+
1648
+ ## 0.8.5
1649
+
1650
+ ### Patch Changes
1651
+
1652
+ - [#2589](https://github.com/wistia/vhs/pull/2589) [`1018e74`](https://github.com/wistia/vhs/commit/1018e74ad941348231512c42e8ea5aef0bbe9840) Thanks [@okize](https://github.com/okize)! - feat: Thumbnail component should have dynamic border radius
1653
+
1654
+ ## 0.8.4
1655
+
1656
+ ### Patch Changes
1657
+
1658
+ - [#2585](https://github.com/wistia/vhs/pull/2585) [`a519428`](https://github.com/wistia/vhs/commit/a5194285cb4bebb8ae9d8fe53847cd06458b291a) Thanks [@JLamp](https://github.com/JLamp)! - restore EditableHeading font styles
1659
+
1660
+ ## 0.8.3
1661
+
1662
+ ### Patch Changes
1663
+
1664
+ - [#2581](https://github.com/wistia/vhs/pull/2581) [`d8b11df`](https://github.com/wistia/vhs/commit/d8b11dff06cb1186de4bc18f4f509062af559c82) Thanks [@JLamp](https://github.com/JLamp)! - add colorScheme prop to Popover
1665
+
1666
+ ## 0.8.2
1667
+
1668
+ ### Patch Changes
1669
+
1670
+ - [#2582](https://github.com/wistia/vhs/pull/2582) [`884efa7`](https://github.com/wistia/vhs/commit/884efa7cff58badea7c8177633c7460ece77e3a8) Thanks [@jetpackjarrett](https://github.com/jetpackjarrett)! - fix: Don't prevent default if is react router link
1671
+
1672
+ ## 0.8.1
1673
+
1674
+ ### Patch Changes
1675
+
1676
+ - [#2574](https://github.com/wistia/vhs/pull/2574) [`264507f`](https://github.com/wistia/vhs/commit/264507f78165ca5569a21306fd991bd9672c0e78) Thanks [@jetpackjarrett](https://github.com/jetpackjarrett)! - feat: InputClickToCopy
1677
+
1678
+ ## 0.8.0
1679
+
1680
+ ### Minor Changes
1681
+
1682
+ - [#2578](https://github.com/wistia/vhs/pull/2578) [`5ceb650`](https://github.com/wistia/vhs/commit/5ceb650ced2bf13ca47bded56c1aa2a243a3775f) Thanks [@mcgloneleviWISTIA](https://github.com/mcgloneleviWISTIA)! - Compact option removed from ui tooltip and delay reduced
1683
+
1684
+ ## 0.7.1
1685
+
1686
+ ### Patch Changes
1687
+
1688
+ - [#2560](https://github.com/wistia/vhs/pull/2560) [`f433814`](https://github.com/wistia/vhs/commit/f4338146832be70d4518369c25cb2c7c8f2b88a6) Thanks [@jetpackjarrett](https://github.com/jetpackjarrett)! - fix: Fix behavior for router context and beforeAction
1689
+
1690
+ ## 0.7.0
1691
+
1692
+ ### Minor Changes
1693
+
1694
+ - [#2567](https://github.com/wistia/vhs/pull/2567) [`9053221`](https://github.com/wistia/vhs/commit/905322189f3214bb601681f342597345dbaf1546) Thanks [@okize](https://github.com/okize)! - feat:! replace `esllipsis` prop with `truncate` prop in `Heading` and `Text` components
1695
+
1696
+ ## 0.6.45
1697
+
1698
+ ### Patch Changes
1699
+
1700
+ - [#2562](https://github.com/wistia/vhs/pull/2562) [`5b5cea1`](https://github.com/wistia/vhs/commit/5b5cea1c040da0159cd86b161341aa13df6c4580) Thanks [@JLamp](https://github.com/JLamp)! - fix Input, Select text colors
1701
+
1702
+ ## 0.6.44
1703
+
1704
+ ### Patch Changes
1705
+
1706
+ - [#2558](https://github.com/wistia/vhs/pull/2558) [`508b04d`](https://github.com/wistia/vhs/commit/508b04df15e92925cab5590530a0699fd74772dd) Thanks [@JLamp](https://github.com/JLamp)! - fix Avatar sizing, hover state, color scheme types
1707
+
1708
+ ## 0.6.43
1709
+
1710
+ ### Patch Changes
1711
+
1712
+ - [#2544](https://github.com/wistia/vhs/pull/2544) [`6ffdf4e`](https://github.com/wistia/vhs/commit/6ffdf4e019bc20cfc6cc67f59035adedeafd13e3) Thanks [@jetpackjarrett](https://github.com/jetpackjarrett)! - feat: add selectedDisplayValue to Select
1713
+
1714
+ ## 0.6.42
1715
+
1716
+ ### Patch Changes
1717
+
1718
+ - [#2497](https://github.com/wistia/vhs/pull/2497) [`393e0ae`](https://github.com/wistia/vhs/commit/393e0aedc18fdfdfc91c82c98635f01eb5638115) Thanks [@JLamp](https://github.com/JLamp)! - update styling for `Input`
1719
+
1720
+ ## 0.6.41
1721
+
1722
+ ### Patch Changes
1723
+
1724
+ - [#2538](https://github.com/wistia/vhs/pull/2538) [`f532703`](https://github.com/wistia/vhs/commit/f532703f18498d67d3bb0e6efbe02830f3734a4b) Thanks [@okize](https://github.com/okize)! - feat: add `Thumbnail` component to UI package
1725
+
1726
+ ## 0.6.40
1727
+
1728
+ ### Patch Changes
1729
+
1730
+ - [#2512](https://github.com/wistia/vhs/pull/2512) [`4c46d23`](https://github.com/wistia/vhs/commit/4c46d23743dc2d225c7aa07ec6cc11cc49785968) Thanks [@JLamp](https://github.com/JLamp)! - add useFocusTrap hook
1731
+
1732
+ ## 0.6.39
1733
+
1734
+ ### Patch Changes
1735
+
1736
+ - [#2442](https://github.com/wistia/vhs/pull/2442) [`0d315b9`](https://github.com/wistia/vhs/commit/0d315b9f0a38c9d22087993867d28ae6b682b150) Thanks [@mrdavidjcole](https://github.com/mrdavidjcole)! - Tweak transition of SegmentedControlItem
1737
+
1738
+ ## 0.6.38
1739
+
1740
+ ### Patch Changes
1741
+
1742
+ - [#2535](https://github.com/wistia/vhs/pull/2535) [`597c90e`](https://github.com/wistia/vhs/commit/597c90e011ac498999dda6ddb85fbf442464882e) Thanks [@JLamp](https://github.com/JLamp)! - add useOnClickOutside hook
1743
+
1744
+ ## 0.6.37
1745
+
1746
+ ### Patch Changes
1747
+
1748
+ - [#2533](https://github.com/wistia/vhs/pull/2533) [`b545c32`](https://github.com/wistia/vhs/commit/b545c326fc3094eae40308060934dae68545a459) Thanks [@okize](https://github.com/okize)! - feat: make mergeRefs helper part of the public API of UI package
1749
+
1750
+ ## 0.6.36
1751
+
1752
+ ### Patch Changes
1753
+
1754
+ - [#2530](https://github.com/wistia/vhs/pull/2530) [`63742cd`](https://github.com/wistia/vhs/commit/63742cdd87545d6eb2e95d7578654e14e0941a20) Thanks [@okize](https://github.com/okize)! - feat: add useLockBodyScroll hook to UI package
1755
+
1756
+ ## 0.6.35
1757
+
1758
+ ### Patch Changes
1759
+
1760
+ - [#2528](https://github.com/wistia/vhs/pull/2528) [`042f913`](https://github.com/wistia/vhs/commit/042f913604bcb2e20266fde831ed74b64f295080) Thanks [@okize](https://github.com/okize)! - feat: add flexMode prop to Box component
1761
+
1762
+ ## 0.6.34
1763
+
1764
+ ### Patch Changes
1765
+
1766
+ - [#2523](https://github.com/wistia/vhs/pull/2523) [`f9d2a7d`](https://github.com/wistia/vhs/commit/f9d2a7d69586dc2f1dfe735fe2661d9bdfda709e) Thanks [@okize](https://github.com/okize)! - feat: add Center component to UI package
1767
+
1768
+ ## 0.6.33
1769
+
1770
+ ### Patch Changes
1771
+
1772
+ - [#2522](https://github.com/wistia/vhs/pull/2522) [`b73d03b`](https://github.com/wistia/vhs/commit/b73d03bd2e95613ff976d17873e3e487375d386b) Thanks [@jetpackjarrett](https://github.com/jetpackjarrett)! - Fix: Collapsible with a true state
1773
+
1774
+ ## 0.6.32
1775
+
1776
+ ### Patch Changes
1777
+
1778
+ - [#2520](https://github.com/wistia/vhs/pull/2520) [`491a999`](https://github.com/wistia/vhs/commit/491a99936a6edbaf96fc432f5063875ece3533cd) Thanks [@jetpackjarrett](https://github.com/jetpackjarrett)! - skip react router for any links with http
1779
+
1780
+ ## 0.6.31
1781
+
1782
+ ### Patch Changes
1783
+
1784
+ - [#2518](https://github.com/wistia/vhs/pull/2518) [`6da1b79`](https://github.com/wistia/vhs/commit/6da1b790a517c30a48cf2a6a190ee100abfddbce) Thanks [@okize](https://github.com/okize)! - fix: Box error messaging was throwing false positives
1785
+
1786
+ ## 0.6.30
1787
+
1788
+ ### Patch Changes
1789
+
1790
+ - [#2472](https://github.com/wistia/vhs/pull/2472) [`a19635e`](https://github.com/wistia/vhs/commit/a19635e5f4c0ad77cb608c4843ac3173eaa5e941) Thanks [@okize](https://github.com/okize)! - feat: add `description` prop to `FormField` component
1791
+
1792
+ ## 0.6.29
1793
+
1794
+ ### Patch Changes
1795
+
1796
+ - [#2495](https://github.com/wistia/vhs/pull/2495) [`b36b17e`](https://github.com/wistia/vhs/commit/b36b17e9e937f1133f0e7811625f84ccaf99a3ea) Thanks [@github-actions](https://github.com/apps/github-actions)! - add icons: import, record-group, request-video, trends
1797
+
1798
+ ## 0.6.28
1799
+
1800
+ ### Patch Changes
1801
+
1802
+ - [#2506](https://github.com/wistia/vhs/pull/2506) [`c26e5f4`](https://github.com/wistia/vhs/commit/c26e5f427bfa23702f1f3e6337b86bc5b5e4f672) Thanks [@okize](https://github.com/okize)! - fix: use `box-sizing` reset from VHS
1803
+
1804
+ ## 0.6.27
1805
+
1806
+ ### Patch Changes
1807
+
1808
+ - [#2507](https://github.com/wistia/vhs/pull/2507) [`c12cbf5`](https://github.com/wistia/vhs/commit/c12cbf5e2373e345018ba6bf4436e0bb1638ec55) Thanks [@jetpackjarrett](https://github.com/jetpackjarrett)! - fix: inline-compact mode for FormField
1809
+
1810
+ ## 0.6.26
1811
+
1812
+ ### Patch Changes
1813
+
1814
+ - [#2503](https://github.com/wistia/vhs/pull/2503) [`f0f3745`](https://github.com/wistia/vhs/commit/f0f3745cace82c33aafbc1ff1b8c879f7aeb81b2) Thanks [@okize](https://github.com/okize)! - feat: add `useLocalStorage` hook to UI package
1815
+
1816
+ ## 0.6.25
1817
+
1818
+ ### Patch Changes
1819
+
1820
+ - [#2498](https://github.com/wistia/vhs/pull/2498) [`1046f1e`](https://github.com/wistia/vhs/commit/1046f1e1c6c351796b28e5a60bd69d3493465028) Thanks [@okize](https://github.com/okize)! - feat: add Switch component to ui package
1821
+
1822
+ ## 0.6.24
1823
+
1824
+ ### Patch Changes
1825
+
1826
+ - [#2487](https://github.com/wistia/vhs/pull/2487) [`76633b9`](https://github.com/wistia/vhs/commit/76633b9a07e47505d3d6cfeb92e59bae172a7910) Thanks [@okize](https://github.com/okize)! - fix: update icon sizes for Radio & Checkbox selected states
1827
+
1828
+ ## 0.6.23
1829
+
1830
+ ### Patch Changes
1831
+
1832
+ - [#2480](https://github.com/wistia/vhs/pull/2480) [`1818dc1`](https://github.com/wistia/vhs/commit/1818dc11197c87783d0620a01b1cd021bc5e2f4c) Thanks [@okize](https://github.com/okize)! - feat: add `hideLabel`, `required` and `size` props to Radio & Checkbox components
1833
+
1834
+ ## 0.6.22
1835
+
1836
+ ### Patch Changes
1837
+
1838
+ - [#2446](https://github.com/wistia/vhs/pull/2446) [`603c5c6`](https://github.com/wistia/vhs/commit/603c5c6c34f23233333af6147131ae9ca4deece8) Thanks [@jetpackjarrett](https://github.com/jetpackjarrett)! - Convert ellipsis to use span
1839
+
1840
+ ## 0.6.21
1841
+
1842
+ ### Patch Changes
1843
+
1844
+ - [#2469](https://github.com/wistia/vhs/pull/2469) [`35d2e6a`](https://github.com/wistia/vhs/commit/35d2e6a3a955d4c44670c6e283849d996c218e2e) Thanks [@okize](https://github.com/okize)! - feat: allow Tag component to take an optional `icon` prop
1845
+
1846
+ ## 0.6.20
1847
+
1848
+ ### Patch Changes
1849
+
1850
+ - [#2457](https://github.com/wistia/vhs/pull/2457) [`480345b`](https://github.com/wistia/vhs/commit/480345b90edc2742c50ee28db637b24c1e5104de) Thanks [@okize](https://github.com/okize)! - feat: add alignItems prop to Stack component
1851
+
1852
+ ## 0.6.19
1853
+
1854
+ ### Patch Changes
1855
+
1856
+ - [#2458](https://github.com/wistia/vhs/pull/2458) [`c6c7ea6`](https://github.com/wistia/vhs/commit/c6c7ea69d5c359f080695f3ec72787422cf92cd1) Thanks [@okize](https://github.com/okize)! - fix: make Input default `fullWidth` prop to `true`
1857
+
1858
+ ## 0.6.18
1859
+
1860
+ ### Patch Changes
1861
+
1862
+ - [#2455](https://github.com/wistia/vhs/pull/2455) [`14c3841`](https://github.com/wistia/vhs/commit/14c3841a6b86de271c24226a43ded0ab1498a2cb) Thanks [@okize](https://github.com/okize)! - feat: add `height` & `width` props to `Box` and `Card` components
1863
+
1864
+ ## 0.6.17
1865
+
1866
+ ### Patch Changes
1867
+
1868
+ - [#2451](https://github.com/wistia/vhs/pull/2451) [`b8e842b`](https://github.com/wistia/vhs/commit/b8e842b687cac5921b20e12171e37827acbff56a) Thanks [@okize](https://github.com/okize)! - fix: ensure modal close button is in correct position when `hideTitle` prop is true
1869
+
1870
+ ## 0.6.16
1871
+
1872
+ ### Patch Changes
1873
+
1874
+ - [#2441](https://github.com/wistia/vhs/pull/2441) [`79793d6`](https://github.com/wistia/vhs/commit/79793d6f7838b20a62a74c0e73e136f1cc111f43) Thanks [@okize](https://github.com/okize)! - feat: add ProgressBar component to UI package
1875
+
1876
+ ## 0.6.15
1877
+
1878
+ ### Patch Changes
1879
+
1880
+ - [#2434](https://github.com/wistia/vhs/pull/2434) [`11e0019`](https://github.com/wistia/vhs/commit/11e001934225d947ea120948cf46ef611b308fd8) Thanks [@jetpackjarrett](https://github.com/jetpackjarrett)! - feat: ClickRegion
1881
+
1882
+ ## 0.6.14
1883
+
1884
+ ### Patch Changes
1885
+
1886
+ - [#2444](https://github.com/wistia/vhs/pull/2444) [`d6b872c`](https://github.com/wistia/vhs/commit/d6b872c41ee8768e9f913de6f7fa8f6cfc284a51) Thanks [@jetpackjarrett](https://github.com/jetpackjarrett)! - fix: add icon to submenu
1887
+
1888
+ ## 0.6.13
1889
+
1890
+ ### Patch Changes
1891
+
1892
+ - [#2437](https://github.com/wistia/vhs/pull/2437) [`2901c15`](https://github.com/wistia/vhs/commit/2901c15a363254492a01190f3acebc6f626e4201) Thanks [@JLamp](https://github.com/JLamp)! - adds unstyled prop to Popover
1893
+
1894
+ ## 0.6.12
1895
+
1896
+ ### Patch Changes
1897
+
1898
+ - [#2427](https://github.com/wistia/vhs/pull/2427) [`0a978c0`](https://github.com/wistia/vhs/commit/0a978c0ded33310f3e1fc256f38862f935ea3f14) Thanks [@jpepper-wistia](https://github.com/jpepper-wistia)! - `Tabs` now supports `stickyHeaders` prop for content to scroll independently from the tab headers.
1899
+
1900
+ ## 0.6.11
1901
+
1902
+ ### Patch Changes
1903
+
1904
+ - [#2424](https://github.com/wistia/vhs/pull/2424) [`c2a9cd1`](https://github.com/wistia/vhs/commit/c2a9cd1d780668a3d1bd373ca045e58e6e34584b) Thanks [@okize](https://github.com/okize)! - feat: add Table component to UI package
1905
+
1906
+ ## 0.6.10
1907
+
1908
+ ### Patch Changes
1909
+
1910
+ - [#2431](https://github.com/wistia/vhs/pull/2431) [`14cdd37`](https://github.com/wistia/vhs/commit/14cdd3725837dd75963b9ab0fd11cc5c00dab973) Thanks [@JLamp](https://github.com/JLamp)! - add many icons
1911
+
1912
+ ## 0.6.9
1913
+
1914
+ ### Patch Changes
1915
+
1916
+ - [#2425](https://github.com/wistia/vhs/pull/2425) [`4c45330`](https://github.com/wistia/vhs/commit/4c45330b098e5ad65f2b753d4221b721943989f7) Thanks [@okize](https://github.com/okize)! - fix: ensure that Tooltip is getting a z-index value that will allow it to appear above modals
1917
+
1918
+ ## 0.6.8
1919
+
1920
+ ### Patch Changes
1921
+
1922
+ - [#2420](https://github.com/wistia/vhs/pull/2420) [`a986f38`](https://github.com/wistia/vhs/commit/a986f381c49e7fb945feb2b5129b61d5631c21ea) Thanks [@jetpackjarrett](https://github.com/jetpackjarrett)! - fix: Fixed option width to match trigger and fixed imports for Select
1923
+
1924
+ ## 0.6.7
1925
+
1926
+ ### Patch Changes
1927
+
1928
+ - [#2413](https://github.com/wistia/vhs/pull/2413) [`bd7d439`](https://github.com/wistia/vhs/commit/bd7d4399ec94efe72eb648a1f4e89697ff34c20b) Thanks [@JLamp](https://github.com/JLamp)! - update SegmentedControlItem styles
1929
+
1930
+ - [#2411](https://github.com/wistia/vhs/pull/2411) [`38e4bbf`](https://github.com/wistia/vhs/commit/38e4bbfaaefc89e8387e456cf87f675c6c8b9239) Thanks [@JLamp](https://github.com/JLamp)! - add opticallyCentered prop to WistiaLogo
1931
+
1932
+ ## 0.6.6
1933
+
1934
+ ### Patch Changes
1935
+
1936
+ - [#2414](https://github.com/wistia/vhs/pull/2414) [`7ee78af`](https://github.com/wistia/vhs/commit/7ee78af2edcce00e9902d680263537a697ce6986) Thanks [@okize](https://github.com/okize)! - feat: add useFilePicker hook to ui
1937
+
1938
+ ## 0.6.5
1939
+
1940
+ ### Patch Changes
1941
+
1942
+ - [#2416](https://github.com/wistia/vhs/pull/2416) [`fe7c817`](https://github.com/wistia/vhs/commit/fe7c817edf6a2af0bf37ea500f9894708ef294b7) Thanks [@jetpackjarrett](https://github.com/jetpackjarrett)! - fix: Fixed onClick event handler for Link
1943
+
1944
+ ## 0.6.4
1945
+
1946
+ ### Patch Changes
1947
+
1948
+ - [#2412](https://github.com/wistia/vhs/pull/2412) [`1974ab7`](https://github.com/wistia/vhs/commit/1974ab70b20ff550ecdfa109d7e62c089e21dba1) Thanks [@JLamp](https://github.com/JLamp)! - fix(Heading): use correct weight for heading2
1949
+
1950
+ ## 0.6.3
1951
+
1952
+ ### Patch Changes
1953
+
1954
+ - [#2402](https://github.com/wistia/vhs/pull/2402) [`0081eab`](https://github.com/wistia/vhs/commit/0081eabb677ea789fac3d7531f304a35a68c1cd0) Thanks [@jetpackjarrett](https://github.com/jetpackjarrett)! - fix: Several small fixes
1955
+
1956
+ ## 0.6.2
1957
+
1958
+ ### Patch Changes
1959
+
1960
+ - [#2403](https://github.com/wistia/vhs/pull/2403) [`1411e85`](https://github.com/wistia/vhs/commit/1411e857d904cca4c776da1dff89812d20b3650a) Thanks [@JLamp](https://github.com/JLamp)! - update nav color scheme
1961
+
1962
+ ## 0.6.1
1963
+
1964
+ ### Patch Changes
1965
+
1966
+ - [#2407](https://github.com/wistia/vhs/pull/2407) [`bf15958`](https://github.com/wistia/vhs/commit/bf15958045dee7107385ef62d780cc3e31a7f3a4) Thanks [@okize](https://github.com/okize)! - feat: add Image component to UI package
1967
+
1968
+ ## 0.6.0
1969
+
1970
+ ### Minor Changes
1971
+
1972
+ - [#2396](https://github.com/wistia/vhs/pull/2396) [`2f3119f`](https://github.com/wistia/vhs/commit/2f3119f0be3cce85f9bf509120515f7ae1c631e0) Thanks [@jetpackjarrett](https://github.com/jetpackjarrett)! - feat: Popover
1973
+
1974
+ ### Patch Changes
1975
+
1976
+ - [#2399](https://github.com/wistia/vhs/pull/2399) [`f9aa71f`](https://github.com/wistia/vhs/commit/f9aa71f78cd81aabd4b3847938ae38e8900e4013) Thanks [@jetpackjarrett](https://github.com/jetpackjarrett)! - Allow opt out of small screen collapse on buttongroup
1977
+
1978
+ ## 0.5.7
1979
+
1980
+ ### Patch Changes
1981
+
1982
+ - [#2394](https://github.com/wistia/vhs/pull/2394) [`2a2389d`](https://github.com/wistia/vhs/commit/2a2389d46da31d5cd7b3b54637b67ecbf4d19baf) Thanks [@mrdavidjcole](https://github.com/mrdavidjcole)! - Animate selection indicator for SegmentedControl
1983
+
1984
+ - [#2398](https://github.com/wistia/vhs/pull/2398) [`5cc9a89`](https://github.com/wistia/vhs/commit/5cc9a8990e3ab5f81ea9643505fc9625de6062c6) Thanks [@JLamp](https://github.com/JLamp)! - update font weight, disabled state, and icon only padding for SegmentedControl and Tabs
1985
+
1986
+ - [#2397](https://github.com/wistia/vhs/pull/2397) [`c3d3caf`](https://github.com/wistia/vhs/commit/c3d3caf6f25b9eafafeb11c078d87b2b2db3be39) Thanks [@mrdavidjcole](https://github.com/mrdavidjcole)! - Transition selection indicator for Tabs
1987
+
1988
+ ## 0.5.6
1989
+
1990
+ ### Patch Changes
1991
+
1992
+ - [#2381](https://github.com/wistia/vhs/pull/2381) [`3df9844`](https://github.com/wistia/vhs/commit/3df98442293e6d4bff65af7e7d04714c55de7a6d) Thanks [@JLamp](https://github.com/JLamp)! - feat(Text): add default elements based on variant, add paragraph spacing
1993
+
1994
+ ## 0.5.5
1995
+
1996
+ ### Patch Changes
1997
+
1998
+ - [#2390](https://github.com/wistia/vhs/pull/2390) [`4ab001b`](https://github.com/wistia/vhs/commit/4ab001b67efb571095360681f4db85ebc1bbeb70) Thanks [@jetpackjarrett](https://github.com/jetpackjarrett)! - Fix input refs
1999
+
2000
+ - [#2387](https://github.com/wistia/vhs/pull/2387) [`0306bad`](https://github.com/wistia/vhs/commit/0306bad006d91ae5ad3faf99e86351c2de7e6790) Thanks [@JLamp](https://github.com/JLamp)! - fix icon size when ActionButton & MenuItemButton are links
2001
+
2002
+ ## 0.5.4
2003
+
2004
+ ### Patch Changes
2005
+
2006
+ - [#2377](https://github.com/wistia/vhs/pull/2377) [`3ca128d`](https://github.com/wistia/vhs/commit/3ca128d2b1974a877f9064c595fda1e1034389e0) Thanks [@okize](https://github.com/okize)! - feat: add Tabs component to ui package
2007
+
2008
+ ## 0.5.3
2009
+
2010
+ ### Patch Changes
2011
+
2012
+ - [#2378](https://github.com/wistia/vhs/pull/2378) [`718b3a6`](https://github.com/wistia/vhs/commit/718b3a649b03ee4156ceb42601e93c9009cd2b46) Thanks [@JLamp](https://github.com/JLamp)! - add EditableHeading
2013
+
2014
+ ## 0.5.2
2015
+
2016
+ ### Patch Changes
2017
+
2018
+ - [#2364](https://github.com/wistia/vhs/pull/2364) [`a798aee`](https://github.com/wistia/vhs/commit/a798aee9c43cf20d802bcbfc918859344e245460) Thanks [@okize](https://github.com/okize)! - feat: add dateTime helpers to UI package
2019
+
2020
+ ## 0.5.1
2021
+
2022
+ ### Patch Changes
2023
+
2024
+ - [#2351](https://github.com/wistia/vhs/pull/2351) [`eb53116`](https://github.com/wistia/vhs/commit/eb5311613a91c47e3b74ee6a39ad35fa1b3f32a0) Thanks [@okize](https://github.com/okize)! - fix: ensure `width` prop works correctly with Modal component
2025
+
2026
+ ## 0.5.0
2027
+
2028
+ ### Minor Changes
2029
+
2030
+ - [#2359](https://github.com/wistia/vhs/pull/2359) [`b876d8e`](https://github.com/wistia/vhs/commit/b876d8e650e3dec8fcab53378179d4ba73effe3e) Thanks [@JLamp](https://github.com/JLamp)! - remove margin above `DataCards`
2031
+ change `maxCardWidth` from `number` to `string` in `DataCards`
2032
+
2033
+ ## 0.4.14
2034
+
2035
+ ### Patch Changes
2036
+
2037
+ - [#2356](https://github.com/wistia/vhs/pull/2356) [`e1bd90d`](https://github.com/wistia/vhs/commit/e1bd90dc50208b5dc46fdf10a7fbe41672bc3f89) Thanks [@JLamp](https://github.com/JLamp)! - add elevation tokens
2038
+
2039
+ - [#2355](https://github.com/wistia/vhs/pull/2355) [`ad99ff9`](https://github.com/wistia/vhs/commit/ad99ff992a31637674033a25e32e85740780ecd6) Thanks [@JLamp](https://github.com/JLamp)! - add motion tokens
2040
+
2041
+ - [#2357](https://github.com/wistia/vhs/pull/2357) [`e249800`](https://github.com/wistia/vhs/commit/e24980018acebd5ca50fdb3bd4588fbfc5da57b9) Thanks [@JLamp](https://github.com/JLamp)! - fix getColorScheme surface colors
2042
+
2043
+ ## 0.4.13
2044
+
2045
+ ### Patch Changes
2046
+
2047
+ - [#2331](https://github.com/wistia/vhs/pull/2331) [`256ee4f`](https://github.com/wistia/vhs/commit/256ee4fb35198d3a3d7baeeda7a23ccd8a1dd8a8) Thanks [@JLamp](https://github.com/JLamp)! - add DataCards, DataCard, and DataCardTrend components
2048
+
2049
+ ## 0.4.12
2050
+
2051
+ ### Patch Changes
2052
+
2053
+ - [#2345](https://github.com/wistia/vhs/pull/2345) [`8f08571`](https://github.com/wistia/vhs/commit/8f08571dee5323eb4ee09cc6fb96e7717e62fda2) Thanks [@jetpackjarrett](https://github.com/jetpackjarrett)! - feat: Breadcrumb responsiveness
2054
+
2055
+ ## 0.4.11
2056
+
2057
+ ### Patch Changes
2058
+
2059
+ - [#1979](https://github.com/wistia/vhs/pull/1979) [`d0b8f08`](https://github.com/wistia/vhs/commit/d0b8f08d99d533d509f2178ba98a18382692a111) Thanks [@okize](https://github.com/okize)! - feat: make UI version of Box polymorphic
2060
+
2061
+ ## 0.4.10
2062
+
2063
+ ### Patch Changes
2064
+
2065
+ - [#2322](https://github.com/wistia/vhs/pull/2322) [`95ff68a`](https://github.com/wistia/vhs/commit/95ff68ad4dbaf538000fe2f6e60e1daf0bdd0f53) Thanks [@okize](https://github.com/okize)! - feat: add SegmentedControl component to ui package
2066
+
2067
+ - [#2322](https://github.com/wistia/vhs/pull/2322) [`95ff68a`](https://github.com/wistia/vhs/commit/95ff68ad4dbaf538000fe2f6e60e1daf0bdd0f53) Thanks [@okize](https://github.com/okize)! - feat: add SegmentedControl component to ui package
2068
+
2069
+ ## 0.4.9
2070
+
2071
+ ### Patch Changes
2072
+
2073
+ - [#2327](https://github.com/wistia/vhs/pull/2327) [`75628d2`](https://github.com/wistia/vhs/commit/75628d2188444b198c442a3f9a804bd51a03d1ba) Thanks [@jetpackjarrett](https://github.com/jetpackjarrett)! - Added icons to Link
2074
+
2075
+ ## 0.4.8
2076
+
2077
+ ### Patch Changes
2078
+
2079
+ - [#2319](https://github.com/wistia/vhs/pull/2319) [`36a62de`](https://github.com/wistia/vhs/commit/36a62de8b1830d9eb6280fa43726b62addacc8e2) Thanks [@JLamp](https://github.com/JLamp)! - fix SubMenu styles
2080
+
2081
+ ## 0.4.7
2082
+
2083
+ ### Patch Changes
2084
+
2085
+ - [#2317](https://github.com/wistia/vhs/pull/2317) [`7d05fd7`](https://github.com/wistia/vhs/commit/7d05fd79431eafb1eedb704d342e0639391bc4bd) Thanks [@okize](https://github.com/okize)! - feat!: pass AvatarStatus object to onImageLoad callback prop
2086
+
2087
+ ## 0.4.6
2088
+
2089
+ ### Patch Changes
2090
+
2091
+ - [#2312](https://github.com/wistia/vhs/pull/2312) [`651a9e2`](https://github.com/wistia/vhs/commit/651a9e25b9191f8ade603062f9d7afa2911e23ee) Thanks [@okize](https://github.com/okize)! - fix: ensure Avatar updates image after setting and invalid image and then receiving a new valid image
2092
+
2093
+ ## 0.4.5
2094
+
2095
+ ### Patch Changes
2096
+
2097
+ - [#2302](https://github.com/wistia/vhs/pull/2302) [`9d91cce`](https://github.com/wistia/vhs/commit/9d91cce349cdcb137d20b0187da4f6cec14eec20) Thanks [@okize](https://github.com/okize)! - feat: add useKey hook to ui package
2098
+
2099
+ ## 0.4.4
2100
+
2101
+ ### Patch Changes
2102
+
2103
+ - [#2303](https://github.com/wistia/vhs/pull/2303) [`1598e56`](https://github.com/wistia/vhs/commit/1598e56380286107487f9e000e702a6643e8afd1) Thanks [@JLamp](https://github.com/JLamp)! - fix `Divider` margin in `Menu`
2104
+
2105
+ ## 0.4.3
2106
+
2107
+ ### Patch Changes
2108
+
2109
+ - [#2299](https://github.com/wistia/vhs/pull/2299) [`e6487d7`](https://github.com/wistia/vhs/commit/e6487d7b2dbba87a667aa81a273b620ecc44407f) Thanks [@okize](https://github.com/okize)! - feat: add useBoolean hook to ui package
2110
+
2111
+ ## 0.4.2
2112
+
2113
+ ### Patch Changes
2114
+
2115
+ - [#2275](https://github.com/wistia/vhs/pull/2275) [`21dd7bb`](https://github.com/wistia/vhs/commit/21dd7bb4ec365fe87a9247e92a035525dbde5484) Thanks [@JLamp](https://github.com/JLamp)! - add `Card` component
2116
+
2117
+ ## 0.4.1
2118
+
2119
+ ### Patch Changes
2120
+
2121
+ - [#2285](https://github.com/wistia/vhs/pull/2285) [`52e6cc8`](https://github.com/wistia/vhs/commit/52e6cc81e175d827f9e0e8b794464d0dc6f31e27) Thanks [@JLamp](https://github.com/JLamp)! - fix Spacings type
2122
+
2123
+ ## 0.4.0
2124
+
2125
+ ### Minor Changes
2126
+
2127
+ - [#2277](https://github.com/wistia/vhs/pull/2277) [`c7e4a04`](https://github.com/wistia/vhs/commit/c7e4a04f29a1b330e86fe3ecd4585be2705382e9) Thanks [@JLamp](https://github.com/JLamp)! - remove high-contrast text colors and add text-button colors
2128
+
2129
+ ## 0.3.2
2130
+
2131
+ ### Patch Changes
2132
+
2133
+ - [#2278](https://github.com/wistia/vhs/pull/2278) [`35dd048`](https://github.com/wistia/vhs/commit/35dd048df9a4f6624e1a8f591ca3d55c408d85f0) Thanks [@okize](https://github.com/okize)! - fix: some props not actually being passed into styled `Box` component
2134
+
2135
+ ## 0.3.1
2136
+
2137
+ ### Patch Changes
2138
+
2139
+ - [#2273](https://github.com/wistia/vhs/pull/2273) [`f6a71a2`](https://github.com/wistia/vhs/commit/f6a71a23028dc6ffbdeec7fa75bb744010ccfd1a) Thanks [@JLamp](https://github.com/JLamp)! - update `ButtonGroup` spacing
2140
+
2141
+ ## 0.3.0
2142
+
2143
+ ### Minor Changes
2144
+
2145
+ - [#2269](https://github.com/wistia/vhs/pull/2269) [`13c1fef`](https://github.com/wistia/vhs/commit/13c1fefc5534cfa22dfc739b4fb3f0f77485a1fd) Thanks [@okize](https://github.com/okize)! - feat!: Box `gap` prop now takes spacing token values instead of arbitrary css values
2146
+
2147
+ ## 0.2.1
2148
+
2149
+ ### Patch Changes
2150
+
2151
+ - [#2263](https://github.com/wistia/vhs/pull/2263) [`2d08cf6`](https://github.com/wistia/vhs/commit/2d08cf690760c5ad7467a339f34567b0974bbbe1) Thanks [@JLamp](https://github.com/JLamp)! - update menu styling and props
2152
+
2153
+ ## 0.2.0
2154
+
2155
+ ### Minor Changes
2156
+
2157
+ - [#2262](https://github.com/wistia/vhs/pull/2262) [`5cafd33`](https://github.com/wistia/vhs/commit/5cafd331d532fb10273b5c5cf907d7dec272ed92) Thanks [@okize](https://github.com/okize)! - feat!: add orientation prop to Divider and remove size prop
2158
+
2159
+ ## 0.1.2
2160
+
2161
+ ### Patch Changes
2162
+
2163
+ - [#2252](https://github.com/wistia/vhs/pull/2252) [`1731a79`](https://github.com/wistia/vhs/commit/1731a796c4b01ee6381c97a0faabcb34a9b31fb8) Thanks [@JLamp](https://github.com/JLamp)! - add ActionButton
2164
+
2165
+ ## 0.1.1
2166
+
2167
+ ### Patch Changes
2168
+
2169
+ - [#2219](https://github.com/wistia/vhs/pull/2219) [`957b2e6`](https://github.com/wistia/vhs/commit/957b2e6a19662af697b4189f26e992bc51b9cd0c) Thanks [@okize](https://github.com/okize)! - feat: add Modal component to UI package
2170
+
2171
+ ## 0.1.0
2172
+
2173
+ ### Minor Changes
2174
+
2175
+ - [#2250](https://github.com/wistia/vhs/pull/2250) [`e2f8799`](https://github.com/wistia/vhs/commit/e2f87996f728c440fea1017a773ae8e009df2e98) Thanks [@jetpackjarrett](https://github.com/jetpackjarrett)! - feat: Remove tooltip from IconButton
2176
+
2177
+ ## 0.0.25
2178
+
2179
+ ### Patch Changes
2180
+
2181
+ - [#2239](https://github.com/wistia/vhs/pull/2239) [`05b8310`](https://github.com/wistia/vhs/commit/05b8310f49037130ba098f8c608a823db8a63930) Thanks [@jetpackjarrett](https://github.com/jetpackjarrett)! - feat: added Input component
2182
+
2183
+ ## 0.0.24
2184
+
2185
+ ### Patch Changes
2186
+
2187
+ - [#2209](https://github.com/wistia/vhs/pull/2209) [`ab58b4c`](https://github.com/wistia/vhs/commit/ab58b4c259ab19498e1fc7d496eec8f663899fcf) Thanks [@JLamp](https://github.com/JLamp)! - update surface colors
2188
+
2189
+ - [#2202](https://github.com/wistia/vhs/pull/2202) [`6fa89f4`](https://github.com/wistia/vhs/commit/6fa89f487bb123f86e903b296dacb315c61a574c) Thanks [@JLamp](https://github.com/JLamp)! - add `nav` color scheme
2190
+
2191
+ ## 0.0.23
2192
+
2193
+ ### Patch Changes
2194
+
2195
+ - [#2203](https://github.com/wistia/vhs/pull/2203) [`213b385`](https://github.com/wistia/vhs/commit/213b385abac17b6a9e5dd05525c8110185a85bc4) Thanks [@okize](https://github.com/okize)! - yfeat: add Toast component to UI package
2196
+
2197
+ ## 0.0.22
2198
+
2199
+ ### Patch Changes
2200
+
2201
+ - [#2207](https://github.com/wistia/vhs/pull/2207) [`deb16d6`](https://github.com/wistia/vhs/commit/deb16d6e2751a00b90d5040673e21a674dd6e1c9) Thanks [@jetpackjarrett](https://github.com/jetpackjarrett)! - feat: Updates to Checkbox Menu Items
2202
+
2203
+ ## 0.0.21
2204
+
2205
+ ### Patch Changes
2206
+
2207
+ - [#2194](https://github.com/wistia/vhs/pull/2194) [`f753434`](https://github.com/wistia/vhs/commit/f753434da4a34d1d9d32fa2fff045eded1b8374d) Thanks [@JLamp](https://github.com/JLamp)! - fix favorite-outline icon
2208
+
2209
+ ## 0.0.20
2210
+
2211
+ ### Patch Changes
2212
+
2213
+ - [#2185](https://github.com/wistia/vhs/pull/2185) [`eb246ea`](https://github.com/wistia/vhs/commit/eb246ea6707db040400a63a0353413face47c29f) Thanks [@okize](https://github.com/okize)! - feat: add Radio (button) component to ui
2214
+
2215
+ ## 0.0.19
2216
+
2217
+ ### Patch Changes
2218
+
2219
+ - [#2174](https://github.com/wistia/vhs/pull/2174) [`3407a22`](https://github.com/wistia/vhs/commit/3407a225130239dbc273efbca8496e6bd00c71c1) Thanks [@JLamp](https://github.com/JLamp)! - add focus states for button
2220
+
2221
+ ## 0.0.18
2222
+
2223
+ ### Patch Changes
2224
+
2225
+ - [#2156](https://github.com/wistia/vhs/pull/2156) [`0d5cfa8`](https://github.com/wistia/vhs/commit/0d5cfa82458c7c71045b44f5e263c54432a458e8) Thanks [@JLamp](https://github.com/JLamp)! - namespace css variables
2226
+
2227
+ ## 0.0.17
2228
+
2229
+ ### Patch Changes
2230
+
2231
+ - [#2154](https://github.com/wistia/vhs/pull/2154) [`37ad615`](https://github.com/wistia/vhs/commit/37ad615fb295c6854769dbaa213d15a7b298eaeb) Thanks [@JLamp](https://github.com/JLamp)! - remove extra border from outline button
2232
+
2233
+ ## 0.0.16
2234
+
2235
+ ### Patch Changes
2236
+
2237
+ - [#2117](https://github.com/wistia/vhs/pull/2117) [`f5dd8d5`](https://github.com/wistia/vhs/commit/f5dd8d556c85bec6accdc15e01dc83fedec3ab2d) Thanks [@jetpackjarrett](https://github.com/jetpackjarrett)! - feat: Menu
2238
+
2239
+ ## 0.0.15
2240
+
2241
+ ### Patch Changes
2242
+
2243
+ - [#2139](https://github.com/wistia/vhs/pull/2139) [`7d67274`](https://github.com/wistia/vhs/commit/7d6727451d614d7481b5d6ed395bd3d79ca90bff) Thanks [@JLamp](https://github.com/JLamp)! - add vendor [hubspot, marketo, pardot] color schemes
2244
+
2245
+ ## 0.0.14
2246
+
2247
+ ### Patch Changes
2248
+
2249
+ - [#2127](https://github.com/wistia/vhs/pull/2127) [`29025b2`](https://github.com/wistia/vhs/commit/29025b2162537559d170a86e9006c29811bc7d14) Thanks [@JLamp](https://github.com/JLamp)! - fixes default color scheme in getColorScheme
2250
+
2251
+ ## 0.0.13
2252
+
2253
+ ### Patch Changes
2254
+
2255
+ - [#2124](https://github.com/wistia/vhs/pull/2124) [`8f5ce54`](https://github.com/wistia/vhs/commit/8f5ce542700371b6941208e3693dd5937dd2c0c2) Thanks [@JLamp](https://github.com/JLamp)! - add transcript icon
2256
+
2257
+ ## 0.0.12
2258
+
2259
+ ### Patch Changes
2260
+
2261
+ - [#2123](https://github.com/wistia/vhs/pull/2123) [`39af01d`](https://github.com/wistia/vhs/commit/39af01d352bc08c69ac58e6a346f84320d2e3513) Thanks [@JLamp](https://github.com/JLamp)! - adds border-secondary colors for higher contrast
2262
+
2263
+ ## 0.0.11
2264
+
2265
+ ### Patch Changes
2266
+
2267
+ - [#2113](https://github.com/wistia/vhs/pull/2113) [`a5c9003`](https://github.com/wistia/vhs/commit/a5c9003702d3b7d647824cc6edcc18548afcb7ac) Thanks [@okize](https://github.com/okize)! - feat: add Avatar to ui package
2268
+
2269
+ - [#2119](https://github.com/wistia/vhs/pull/2119) [`81b26cd`](https://github.com/wistia/vhs/commit/81b26cdbb06136ea62207417cc1aca364f3a6ddc) Thanks [@JLamp](https://github.com/JLamp)! - adds new color tokens: `color-border-hover` & `color-border-active`
2270
+
2271
+ ## 0.0.10
2272
+
2273
+ ### Patch Changes
2274
+
2275
+ - [#2106](https://github.com/wistia/vhs/pull/2106) [`cfee168`](https://github.com/wistia/vhs/commit/cfee168d2bcf151ad57a7ac38a923f5406dd94fd) Thanks [@okize](https://github.com/okize)! - feat: add `Badge` component
2276
+ feat: add `Label` component
2277
+
2278
+ ## 0.0.9
2279
+
2280
+ ### Patch Changes
2281
+
2282
+ - [#2089](https://github.com/wistia/vhs/pull/2089) [`704e6d3`](https://github.com/wistia/vhs/commit/704e6d35104a59606162558d685e805f9cd1ba6b) Thanks [@JLamp](https://github.com/JLamp)! - added ColorSchemeWrapper component
2283
+
2284
+ ## 0.0.8
2285
+
2286
+ ### Patch Changes
2287
+
2288
+ - [#2080](https://github.com/wistia/vhs/pull/2080) [`c525d2a`](https://github.com/wistia/vhs/commit/c525d2a0c10a39179164f943efe23d9d8a32fc27) Thanks [@jetpackjarrett](https://github.com/jetpackjarrett)! - - Fixed padding on Button when icons are visible
2289
+ - Added `colorScheme` prop to Icon
2290
+
2291
+ ## 0.0.7
2292
+
2293
+ ### Patch Changes
2294
+
2295
+ - [#2072](https://github.com/wistia/vhs/pull/2072) [`2825bab`](https://github.com/wistia/vhs/commit/2825babc3dcb97a524cd589ed182217db7de6546) Thanks [@okize](https://github.com/okize)! - fix: switch module type to commonjs for VMA compat
2296
+
2297
+ ## 0.0.6
2298
+
2299
+ ### Patch Changes
2300
+
2301
+ - [#2052](https://github.com/wistia/vhs/pull/2052) [`03a3b44`](https://github.com/wistia/vhs/commit/03a3b4454a8db36e9119fc0d3f9bc4b16e94f45f) Thanks [@okize](https://github.com/okize)! - fix: in tsconfig, `jsxImportSource` should be set to `react` alongside `jsx: react-jsx`
2302
+
2303
+ ## 0.0.5
2304
+
2305
+ ### Patch Changes
2306
+
2307
+ - [#2047](https://github.com/wistia/vhs/pull/2047) [`0d7addd`](https://github.com/wistia/vhs/commit/0d7adddccacd89ac40325b5e5edd224bebd5e41e) Thanks [@okize](https://github.com/okize)! - fix: remove `externals` setting from tsup config, which handles this automatically'
2308
+
2309
+ ## 0.0.4
2310
+
2311
+ ### Patch Changes
2312
+
2313
+ - [#2036](https://github.com/wistia/vhs/pull/2036) [`c71482c`](https://github.com/wistia/vhs/commit/c71482c50c5ceaa6508690c0ef0f9760088e9ce3) Thanks [@jetpackjarrett](https://github.com/jetpackjarrett)! - fix: ignore react-router when Link is external
2314
+
2315
+ ## 0.0.3
2316
+
2317
+ ### Patch Changes
2318
+
2319
+ - [#2030](https://github.com/wistia/vhs/pull/2030) [`1202626`](https://github.com/wistia/vhs/commit/1202626262291739a95c0cd563c52703b5d6ab5d) Thanks [@jetpackjarrett](https://github.com/jetpackjarrett)! - fix: Correct to prop for router links
2320
+
2321
+ ## 0.0.2
2322
+
2323
+ ### Patch Changes
2324
+
2325
+ - [#2023](https://github.com/wistia/vhs/pull/2023) [`d5861a1`](https://github.com/wistia/vhs/commit/d5861a1245e425e0b211d2fff80087b2e8575bd4) Thanks [@okize](https://github.com/okize)! - yfix: ensure Link component is exported correctly
2326
+
2327
+ ## 0.0.1
2328
+
2329
+ ### Patch Changes
2330
+
2331
+ - [#2015](https://github.com/wistia/vhs/pull/2015) [`96490f0`](https://github.com/wistia/vhs/commit/96490f083edb25886c920f9fa727fed36ed42618) Thanks [@okize](https://github.com/okize)! - chore: initial release