@wistia/ui 1.6.0 → 1.6.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md ADDED
@@ -0,0 +1,2247 @@
1
+ # Changelog
2
+
3
+ ## 1.6.1
4
+
5
+ ### Patch Changes
6
+
7
+ - [#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
8
+
9
+ ## 1.6.0
10
+
11
+ ### Minor Changes
12
+
13
+ - [#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
14
+
15
+ - **`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.
16
+ - **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.
17
+ - **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.
18
+ - **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.
19
+
20
+ ## 1.5.0
21
+
22
+ ### Minor Changes
23
+
24
+ - [#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.
25
+
26
+ 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.
27
+
28
+ ## 1.4.4
29
+
30
+ ### Patch Changes
31
+
32
+ - [#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.
33
+
34
+ ## 1.4.3
35
+
36
+ ### Patch Changes
37
+
38
+ - [#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.
39
+
40
+ ## 1.4.2
41
+
42
+ ### Patch Changes
43
+
44
+ - [#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.
45
+
46
+ ## 1.4.1
47
+
48
+ ### Patch Changes
49
+
50
+ - [#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.
51
+
52
+ ## 1.4.0
53
+
54
+ ### Minor Changes
55
+
56
+ - [#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.
57
+
58
+ `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.
59
+
60
+ ## 1.3.2
61
+
62
+ ### Patch Changes
63
+
64
+ - [#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
65
+
66
+ ## 1.3.1
67
+
68
+ ### Patch Changes
69
+
70
+ - [#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.
71
+
72
+ ## 1.3.0
73
+
74
+ ### Minor Changes
75
+
76
+ - [#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.
77
+
78
+ ## 1.2.0
79
+
80
+ ### Minor Changes
81
+
82
+ - [#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
83
+
84
+ ## 1.1.0
85
+
86
+ ### Minor Changes
87
+
88
+ - [#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.
89
+
90
+ ## 1.0.0
91
+
92
+ ### Major Changes
93
+
94
+ - [#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
95
+
96
+ ## 0.26.16
97
+
98
+ ### Patch Changes
99
+
100
+ - [#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
101
+
102
+ ## 0.26.15
103
+
104
+ ### Patch Changes
105
+
106
+ - [#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
107
+
108
+ ## 0.26.14
109
+
110
+ ### Patch Changes
111
+
112
+ - [#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
113
+
114
+ ## 0.26.13
115
+
116
+ ### Patch Changes
117
+
118
+ - [#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
119
+
120
+ ## 0.26.12
121
+
122
+ ### Patch Changes
123
+
124
+ - [#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
125
+
126
+ ## 0.26.11
127
+
128
+ ### Patch Changes
129
+
130
+ - [#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.
131
+
132
+ ## 0.26.10
133
+
134
+ ### Patch Changes
135
+
136
+ - [#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`
137
+
138
+ ## 0.26.9
139
+
140
+ ### Patch Changes
141
+
142
+ - [#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
143
+
144
+ ## 0.26.8
145
+
146
+ ### Patch Changes
147
+
148
+ - [#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
149
+
150
+ ## 0.26.7
151
+
152
+ ### Patch Changes
153
+
154
+ - [#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
155
+
156
+ ## 0.26.6
157
+
158
+ ### Patch Changes
159
+
160
+ - [#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
161
+
162
+ ## 0.26.5
163
+
164
+ ### Patch Changes
165
+
166
+ - [#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
167
+
168
+ ## 0.26.4
169
+
170
+ ### Patch Changes
171
+
172
+ - [#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
173
+
174
+ ## 0.26.3
175
+
176
+ ### Patch Changes
177
+
178
+ - [#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
179
+
180
+ ## 0.26.2
181
+
182
+ ### Patch Changes
183
+
184
+ - [#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
185
+
186
+ ## 0.26.1
187
+
188
+ ### Patch Changes
189
+
190
+ - [#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.
191
+
192
+ ## 0.26.0
193
+
194
+ ### Minor Changes
195
+
196
+ - [#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
197
+
198
+ ## 0.25.10
199
+
200
+ ### Patch Changes
201
+
202
+ - [#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
203
+
204
+ ## 0.25.9
205
+
206
+ ### Patch Changes
207
+
208
+ - [#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
209
+
210
+ ## 0.25.8
211
+
212
+ ### Patch Changes
213
+
214
+ - [#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
215
+
216
+ ## 0.25.7
217
+
218
+ ### Patch Changes
219
+
220
+ - [#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
221
+
222
+ ## 0.25.6
223
+
224
+ ### Patch Changes
225
+
226
+ - [#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
227
+
228
+ ## 0.25.5
229
+
230
+ ### Patch Changes
231
+
232
+ - [#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
233
+
234
+ ## 0.25.4
235
+
236
+ ### Patch Changes
237
+
238
+ - [#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
239
+
240
+ ## 0.25.3
241
+
242
+ ### Patch Changes
243
+
244
+ - [#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
245
+
246
+ ## 0.25.2
247
+
248
+ ### Patch Changes
249
+
250
+ - [#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
251
+
252
+ ## 0.25.1
253
+
254
+ ### Patch Changes
255
+
256
+ - [#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
257
+
258
+ ## 0.25.0
259
+
260
+ ### Minor Changes
261
+
262
+ - [#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
263
+
264
+ ## 0.24.0
265
+
266
+ ### Minor Changes
267
+
268
+ - [#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
269
+
270
+ ## 0.23.0
271
+
272
+ ### Minor Changes
273
+
274
+ - [#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.
275
+
276
+ ### Patch Changes
277
+
278
+ - [#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
279
+
280
+ ## 0.22.10
281
+
282
+ ### Patch Changes
283
+
284
+ - [#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
285
+
286
+ ## 0.22.9
287
+
288
+ ### Patch Changes
289
+
290
+ - [`072b1f5`](https://github.com/wistia/vhs/commit/072b1f5e8f0545b4ef67c56f899b3124b4557bf8) Thanks [@bim-kryant](https://github.com/bim-kryant)! - Add normalization for hex color in ColorPicker
291
+
292
+ ## 0.22.8
293
+
294
+ ### Patch Changes
295
+
296
+ - [#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.
297
+
298
+ - [#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
299
+
300
+ ## 0.22.7
301
+
302
+ ### Patch Changes
303
+
304
+ - [#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
305
+
306
+ ## 0.22.6
307
+
308
+ ### Patch Changes
309
+
310
+ - [#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
311
+
312
+ ## 0.22.5
313
+
314
+ ### Patch Changes
315
+
316
+ - [#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
317
+
318
+ ## 0.22.4
319
+
320
+ ### Patch Changes
321
+
322
+ - [#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
323
+
324
+ ## 0.22.3
325
+
326
+ ### Patch Changes
327
+
328
+ - [#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
329
+
330
+ ## 0.22.2
331
+
332
+ ### Patch Changes
333
+
334
+ - [#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
335
+
336
+ ## 0.22.1
337
+
338
+ ### Patch Changes
339
+
340
+ - [#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
341
+
342
+ ## 0.22.0
343
+
344
+ ### Minor Changes
345
+
346
+ - [#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`
347
+ - `KeyboardKeys` now includes `','` (comma) as a `PunctuationKeys` member
348
+ - `isKeyboardKey(key: string): key is KeyboardKeys`: type guard that narrows an unknown string to `KeyboardKeys`
349
+
350
+ ## 0.21.12
351
+
352
+ ### Patch Changes
353
+
354
+ - [#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
355
+
356
+ ## 0.21.11
357
+
358
+ ### Patch Changes
359
+
360
+ - [#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
361
+
362
+ ## 0.21.10
363
+
364
+ ### Patch Changes
365
+
366
+ - [#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
367
+
368
+ ## 0.21.9
369
+
370
+ ### Patch Changes
371
+
372
+ - [#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
373
+
374
+ ## 0.21.8
375
+
376
+ ### Patch Changes
377
+
378
+ - [#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
379
+
380
+ ## 0.21.7
381
+
382
+ ### Patch Changes
383
+
384
+ - [#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
385
+
386
+ - [#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
387
+
388
+ ## 0.21.6
389
+
390
+ ### Patch Changes
391
+
392
+ - [#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
393
+
394
+ ## 0.21.5
395
+
396
+ ### Patch Changes
397
+
398
+ - [#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
399
+
400
+ ## 0.21.4
401
+
402
+ ### Patch Changes
403
+
404
+ - [#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
405
+
406
+ ## 0.21.3
407
+
408
+ ### Patch Changes
409
+
410
+ - [#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
411
+
412
+ ## 0.21.2
413
+
414
+ ### Patch Changes
415
+
416
+ - [#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
417
+
418
+ - [#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
419
+
420
+ ## 0.21.1
421
+
422
+ ### Patch Changes
423
+
424
+ - [#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
425
+
426
+ ## 0.21.0
427
+
428
+ ### Minor Changes
429
+
430
+ - [#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
431
+ - **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.
432
+ - **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.
433
+
434
+ ## 0.20.22
435
+
436
+ ### Patch Changes
437
+
438
+ - [#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
439
+
440
+ ## 0.20.21
441
+
442
+ ### Patch Changes
443
+
444
+ - [#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
445
+
446
+ - [#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
447
+
448
+ ## 0.20.20
449
+
450
+ ### Patch Changes
451
+
452
+ - [#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
453
+
454
+ ## 0.20.19
455
+
456
+ ### Patch Changes
457
+
458
+ - [#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
459
+
460
+ ## 0.20.18
461
+
462
+ ### Patch Changes
463
+
464
+ - [#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
465
+
466
+ ## 0.20.17
467
+
468
+ ### Patch Changes
469
+
470
+ - [#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
471
+
472
+ ## 0.20.16
473
+
474
+ ### Patch Changes
475
+
476
+ - [#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
477
+
478
+ ## 0.20.15
479
+
480
+ ### Patch Changes
481
+
482
+ - [#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`
483
+
484
+ ## 0.20.14
485
+
486
+ ### Patch Changes
487
+
488
+ - [#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
489
+
490
+ ## 0.20.13
491
+
492
+ ### Patch Changes
493
+
494
+ - [#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
495
+
496
+ ## 0.20.12
497
+
498
+ ### Patch Changes
499
+
500
+ - [#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
501
+
502
+ ## 0.20.11
503
+
504
+ ### Patch Changes
505
+
506
+ - [#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
507
+
508
+ ## 0.20.10
509
+
510
+ ### Patch Changes
511
+
512
+ - [#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
513
+
514
+ ## 0.20.9
515
+
516
+ ### Patch Changes
517
+
518
+ - [#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
519
+
520
+ ## 0.20.8
521
+
522
+ ### Patch Changes
523
+
524
+ - [#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
525
+
526
+ ## 0.20.7
527
+
528
+ ### Patch Changes
529
+
530
+ - [#3347](https://github.com/wistia/vhs/pull/3347) [`fc2c448`](https://github.com/wistia/vhs/commit/fc2c448b04cda7f901a612826eee90b790ca9bd0) Thanks [@andrewdang17](https://github.com/andrewdang17)! - export validateWithYup
531
+
532
+ ## 0.20.6
533
+
534
+ ### Patch Changes
535
+
536
+ - [#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
537
+
538
+ ## 0.20.5
539
+
540
+ ### Patch Changes
541
+
542
+ - [#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
543
+
544
+ ## 0.20.4
545
+
546
+ ### Patch Changes
547
+
548
+ - [#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
549
+
550
+ ## 0.20.3
551
+
552
+ ### Patch Changes
553
+
554
+ - [#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
555
+
556
+ ## 0.20.2
557
+
558
+ ### Patch Changes
559
+
560
+ - [#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
561
+
562
+ ## 0.20.1
563
+
564
+ ### Patch Changes
565
+
566
+ - [#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
567
+
568
+ ## 0.20.0
569
+
570
+ ### Minor Changes
571
+
572
+ - [#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
573
+
574
+ ## 0.19.4
575
+
576
+ ### Patch Changes
577
+
578
+ - [#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
579
+
580
+ ## 0.19.3
581
+
582
+ ### Patch Changes
583
+
584
+ - [#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
585
+
586
+ ## 0.19.2
587
+
588
+ ### Patch Changes
589
+
590
+ - [#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
591
+
592
+ ## 0.19.1
593
+
594
+ ### Patch Changes
595
+
596
+ - [#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
597
+
598
+ ## 0.19.0
599
+
600
+ ### Minor Changes
601
+
602
+ - [#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
603
+
604
+ ## 0.18.18
605
+
606
+ ### Patch Changes
607
+
608
+ - [#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
609
+
610
+ ## 0.18.17
611
+
612
+ ### Patch Changes
613
+
614
+ - [#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`
615
+
616
+ ## 0.18.16
617
+
618
+ ### Patch Changes
619
+
620
+ - [#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
621
+
622
+ ## 0.18.15
623
+
624
+ ### Patch Changes
625
+
626
+ - [#3251](https://github.com/wistia/vhs/pull/3251) [`f0fa85f`](https://github.com/wistia/vhs/commit/f0fa85f6a401e5179a13220c5bf0ea203b7ad3c5) Thanks [@jetpackjarrett](https://github.com/jetpackjarrett)! - CustomizableThemeWrapper
627
+
628
+ ## 0.18.14
629
+
630
+ ### Patch Changes
631
+
632
+ - [#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
633
+
634
+ ## 0.18.13
635
+
636
+ ### Patch Changes
637
+
638
+ - [#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
639
+
640
+ ## 0.18.12
641
+
642
+ ### Patch Changes
643
+
644
+ - [#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
645
+
646
+ ## 0.18.11
647
+
648
+ ### Patch Changes
649
+
650
+ - [#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
651
+
652
+ ## 0.18.10
653
+
654
+ ### Patch Changes
655
+
656
+ - [#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
657
+
658
+ ## 0.18.9
659
+
660
+ ### Patch Changes
661
+
662
+ - [#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
663
+
664
+ ## 0.18.8
665
+
666
+ ### Patch Changes
667
+
668
+ - [#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
669
+
670
+ ## 0.18.7
671
+
672
+ ### Patch Changes
673
+
674
+ - [#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
675
+
676
+ ## 0.18.6
677
+
678
+ ### Patch Changes
679
+
680
+ - [#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
681
+
682
+ ## 0.18.5
683
+
684
+ ### Patch Changes
685
+
686
+ - [#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
687
+
688
+ ## 0.18.4
689
+
690
+ ### Patch Changes
691
+
692
+ - [#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
693
+
694
+ ## 0.18.3
695
+
696
+ ### Patch Changes
697
+
698
+ - [#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
699
+
700
+ - [#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
701
+
702
+ ## 0.18.2
703
+
704
+ ### Patch Changes
705
+
706
+ - [#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
707
+
708
+ ## 0.18.1
709
+
710
+ ### Patch Changes
711
+
712
+ - [#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
713
+
714
+ ## 0.18.0
715
+
716
+ ### Minor Changes
717
+
718
+ - [#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
719
+
720
+ ## 0.17.1
721
+
722
+ ### Patch Changes
723
+
724
+ - [#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
725
+
726
+ ## 0.17.0
727
+
728
+ ### Minor Changes
729
+
730
+ - [#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
731
+
732
+ ## 0.16.1
733
+
734
+ ### Patch Changes
735
+
736
+ - [#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
737
+
738
+ - [#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
739
+
740
+ - [#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
741
+
742
+ ## 0.16.0
743
+
744
+ ### Minor Changes
745
+
746
+ - [#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
747
+
748
+ ### Patch Changes
749
+
750
+ - [#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
751
+
752
+ ## 0.15.14
753
+
754
+ ### Patch Changes
755
+
756
+ - [#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
757
+
758
+ - [#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
759
+
760
+ ## 0.15.13
761
+
762
+ ### Patch Changes
763
+
764
+ - [#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
765
+
766
+ ## 0.15.12
767
+
768
+ ### Patch Changes
769
+
770
+ - [#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
771
+
772
+ ## 0.15.11
773
+
774
+ ### Patch Changes
775
+
776
+ - [#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
777
+
778
+ ## 0.15.10
779
+
780
+ ### Patch Changes
781
+
782
+ - [#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
783
+
784
+ - [#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
785
+
786
+ ## 0.15.9
787
+
788
+ ### Patch Changes
789
+
790
+ - [#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
791
+
792
+ ## 0.15.8
793
+
794
+ ### Patch Changes
795
+
796
+ - [#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
797
+
798
+ ## 0.15.7
799
+
800
+ ### Patch Changes
801
+
802
+ - [#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
803
+
804
+ ## 0.15.6
805
+
806
+ ### Patch Changes
807
+
808
+ - [#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
809
+
810
+ ## 0.15.5
811
+
812
+ ### Patch Changes
813
+
814
+ - [#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
815
+
816
+ ## 0.15.4
817
+
818
+ ### Patch Changes
819
+
820
+ - [#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
821
+
822
+ ## 0.15.3
823
+
824
+ ### Patch Changes
825
+
826
+ - [#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
827
+
828
+ ## 0.15.2
829
+
830
+ ### Patch Changes
831
+
832
+ - [#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
833
+
834
+ ## 0.15.1
835
+
836
+ ### Patch Changes
837
+
838
+ - [#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
839
+
840
+ ## 0.15.0
841
+
842
+ ### Minor Changes
843
+
844
+ - [#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
845
+
846
+ ## 0.14.41
847
+
848
+ ### Patch Changes
849
+
850
+ - [#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
851
+
852
+ ## 0.14.40
853
+
854
+ ### Patch Changes
855
+
856
+ - [#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
857
+
858
+ ## 0.14.39
859
+
860
+ ### Patch Changes
861
+
862
+ - [#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
863
+
864
+ ## 0.14.38
865
+
866
+ ### Patch Changes
867
+
868
+ - [#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
869
+
870
+ ## 0.14.37
871
+
872
+ ### Patch Changes
873
+
874
+ - [#3066](https://github.com/wistia/vhs/pull/3066) [`ab9d760`](https://github.com/wistia/vhs/commit/ab9d76062f44dd7693d50ca477d53c6e58b67bab) Thanks [@jetpackjarrett](https://github.com/jetpackjarrett)! - feat: SplitButton
875
+
876
+ ## 0.14.36
877
+
878
+ ### Patch Changes
879
+
880
+ - [#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
881
+
882
+ ## 0.14.35
883
+
884
+ ### Patch Changes
885
+
886
+ - [#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
887
+
888
+ - [#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
889
+
890
+ ## 0.14.34
891
+
892
+ ### Patch Changes
893
+
894
+ - [#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
895
+
896
+ ## 0.14.33
897
+
898
+ ### Patch Changes
899
+
900
+ - [#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
901
+
902
+ ## 0.14.32
903
+
904
+ ### Patch Changes
905
+
906
+ - [#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
907
+
908
+ ## 0.14.31
909
+
910
+ ### Patch Changes
911
+
912
+ - [#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
913
+
914
+ ## 0.14.30
915
+
916
+ ### Patch Changes
917
+
918
+ - [#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
919
+
920
+ ## 0.14.29
921
+
922
+ ### Patch Changes
923
+
924
+ - [#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
925
+
926
+ ## 0.14.28
927
+
928
+ ### Patch Changes
929
+
930
+ - [#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
931
+
932
+ ## 0.14.27
933
+
934
+ ### Patch Changes
935
+
936
+ - [#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
937
+
938
+ ## 0.14.26
939
+
940
+ ### Patch Changes
941
+
942
+ - [#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.
943
+
944
+ ## 0.14.25
945
+
946
+ ### Patch Changes
947
+
948
+ - [#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
949
+
950
+ ## 0.14.24
951
+
952
+ ### Patch Changes
953
+
954
+ - [#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
955
+
956
+ ## 0.14.23
957
+
958
+ ### Patch Changes
959
+
960
+ - [#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
961
+
962
+ ## 0.14.22
963
+
964
+ ### Patch Changes
965
+
966
+ - [#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
967
+
968
+ ## 0.14.21
969
+
970
+ ### Patch Changes
971
+
972
+ - [#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
973
+
974
+ ## 0.14.20
975
+
976
+ ### Patch Changes
977
+
978
+ - [#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
979
+
980
+ ## 0.14.19
981
+
982
+ ### Patch Changes
983
+
984
+ - [#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`
985
+
986
+ ## 0.14.18
987
+
988
+ ### Patch Changes
989
+
990
+ - [#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
991
+
992
+ ## 0.14.17
993
+
994
+ ### Patch Changes
995
+
996
+ - [#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`
997
+
998
+ ## 0.14.16
999
+
1000
+ ### Patch Changes
1001
+
1002
+ - [#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
1003
+
1004
+ ## 0.14.15
1005
+
1006
+ ### Patch Changes
1007
+
1008
+ - [#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
1009
+
1010
+ ## 0.14.14
1011
+
1012
+ ### Patch Changes
1013
+
1014
+ - [#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
1015
+
1016
+ - [#2980](https://github.com/wistia/vhs/pull/2980) [`acf738a`](https://github.com/wistia/vhs/commit/acf738ad991f589585bfb6c0d81d6cee013c88bc) Thanks [@jetpackjarrett](https://github.com/jetpackjarrett)! - feat: DataList
1017
+
1018
+ - [#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
1019
+
1020
+ ## 0.14.13
1021
+
1022
+ ### Patch Changes
1023
+
1024
+ - [#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
1025
+
1026
+ ## 0.14.12
1027
+
1028
+ ### Patch Changes
1029
+
1030
+ - [#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
1031
+
1032
+ - [#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
1033
+
1034
+ ## 0.14.11
1035
+
1036
+ ### Patch Changes
1037
+
1038
+ - [#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
1039
+
1040
+ ## 0.14.10
1041
+
1042
+ ### Patch Changes
1043
+
1044
+ - [#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
1045
+
1046
+ ## 0.14.9
1047
+
1048
+ ### Patch Changes
1049
+
1050
+ - [#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
1051
+
1052
+ ## 0.14.8
1053
+
1054
+ ### Patch Changes
1055
+
1056
+ - [#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
1057
+
1058
+ ## 0.14.7
1059
+
1060
+ ### Patch Changes
1061
+
1062
+ - [#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
1063
+
1064
+ ## 0.14.6
1065
+
1066
+ ### Patch Changes
1067
+
1068
+ - [#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
1069
+
1070
+ ## 0.14.5
1071
+
1072
+ ### Patch Changes
1073
+
1074
+ - [#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
1075
+
1076
+ ## 0.14.4
1077
+
1078
+ ### Patch Changes
1079
+
1080
+ - [#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
1081
+
1082
+ ## 0.14.3
1083
+
1084
+ ### Patch Changes
1085
+
1086
+ - [#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
1087
+
1088
+ ## 0.14.2
1089
+
1090
+ ### Patch Changes
1091
+
1092
+ - [#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
1093
+
1094
+ ## 0.14.1
1095
+
1096
+ ### Patch Changes
1097
+
1098
+ - [#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
1099
+
1100
+ ## 0.14.0
1101
+
1102
+ ### Minor Changes
1103
+
1104
+ - [#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`
1105
+
1106
+ ## 0.13.13
1107
+
1108
+ ### Patch Changes
1109
+
1110
+ - [#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
1111
+
1112
+ ## 0.13.12
1113
+
1114
+ ### Patch Changes
1115
+
1116
+ - [#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
1117
+
1118
+ ## 0.13.11
1119
+
1120
+ ### Patch Changes
1121
+
1122
+ - [#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
1123
+
1124
+ ## 0.13.10
1125
+
1126
+ ### Patch Changes
1127
+
1128
+ - [#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`
1129
+
1130
+ ## 0.13.9
1131
+
1132
+ ### Patch Changes
1133
+
1134
+ - [#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
1135
+
1136
+ ## 0.13.8
1137
+
1138
+ ### Patch Changes
1139
+
1140
+ - [#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
1141
+
1142
+ ## 0.13.7
1143
+
1144
+ ### Patch Changes
1145
+
1146
+ - [#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
1147
+
1148
+ ## 0.13.6
1149
+
1150
+ ### Patch Changes
1151
+
1152
+ - [#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
1153
+
1154
+ ## 0.13.5
1155
+
1156
+ ### Patch Changes
1157
+
1158
+ - [#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
1159
+
1160
+ - [#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
1161
+
1162
+ ## 0.13.4
1163
+
1164
+ ### Patch Changes
1165
+
1166
+ - [#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
1167
+
1168
+ ## 0.13.3
1169
+
1170
+ ### Patch Changes
1171
+
1172
+ - [#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
1173
+
1174
+ - [#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
1175
+
1176
+ ## 0.13.2
1177
+
1178
+ ### Patch Changes
1179
+
1180
+ - [#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
1181
+
1182
+ ## 0.13.1
1183
+
1184
+ ### Patch Changes
1185
+
1186
+ - [#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
1187
+
1188
+ - [#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
1189
+
1190
+ ## 0.13.0
1191
+
1192
+ ### Minor Changes
1193
+
1194
+ - [#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
1195
+
1196
+ ## 0.12.2
1197
+
1198
+ ### Patch Changes
1199
+
1200
+ - [#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
1201
+
1202
+ ## 0.12.1
1203
+
1204
+ ### Patch Changes
1205
+
1206
+ - [#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
1207
+
1208
+ ## 0.12.0
1209
+
1210
+ ### Minor Changes
1211
+
1212
+ - [#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`
1213
+
1214
+ ## 0.11.7
1215
+
1216
+ ### Patch Changes
1217
+
1218
+ - [#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
1219
+
1220
+ ## 0.11.6
1221
+
1222
+ ### Patch Changes
1223
+
1224
+ - [#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
1225
+
1226
+ ## 0.11.5
1227
+
1228
+ ### Patch Changes
1229
+
1230
+ - [#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`
1231
+
1232
+ ## 0.11.4
1233
+
1234
+ ### Patch Changes
1235
+
1236
+ - [#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
1237
+
1238
+ ## 0.11.3
1239
+
1240
+ ### Patch Changes
1241
+
1242
+ - [#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
1243
+
1244
+ ## 0.11.2
1245
+
1246
+ ### Patch Changes
1247
+
1248
+ - [#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
1249
+
1250
+ ## 0.11.1
1251
+
1252
+ ### Patch Changes
1253
+
1254
+ - [#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
1255
+
1256
+ ## 0.11.0
1257
+
1258
+ ### Minor Changes
1259
+
1260
+ - [#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
1261
+
1262
+ ## 0.10.18
1263
+
1264
+ ### Patch Changes
1265
+
1266
+ - [#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
1267
+
1268
+ ## 0.10.17
1269
+
1270
+ ### Patch Changes
1271
+
1272
+ - [#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
1273
+
1274
+ ## 0.10.16
1275
+
1276
+ ### Patch Changes
1277
+
1278
+ - [#2717](https://github.com/wistia/vhs/pull/2717) [`fbd5b7b`](https://github.com/wistia/vhs/commit/fbd5b7b9308c32c7896c1bcc0567e5301640a452) Thanks [@jetpackjarrett](https://github.com/jetpackjarrett)! - feat: FilterMenu
1279
+
1280
+ ## 0.10.15
1281
+
1282
+ ### Patch Changes
1283
+
1284
+ - [#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
1285
+
1286
+ ## 0.10.14
1287
+
1288
+ ### Patch Changes
1289
+
1290
+ - [#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
1291
+
1292
+ ## 0.10.13
1293
+
1294
+ ### Patch Changes
1295
+
1296
+ - [#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
1297
+
1298
+ ## 0.10.12
1299
+
1300
+ ### Patch Changes
1301
+
1302
+ - [#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
1303
+
1304
+ ## 0.10.11
1305
+
1306
+ ### Patch Changes
1307
+
1308
+ - [#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.
1309
+
1310
+ - [#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
1311
+
1312
+ ## 0.10.10
1313
+
1314
+ ### Patch Changes
1315
+
1316
+ - [#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`
1317
+
1318
+ ## 0.10.9
1319
+
1320
+ ### Patch Changes
1321
+
1322
+ - [#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
1323
+
1324
+ ## 0.10.8
1325
+
1326
+ ### Patch Changes
1327
+
1328
+ - [#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
1329
+
1330
+ ## 0.10.7
1331
+
1332
+ ### Patch Changes
1333
+
1334
+ - [#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
1335
+
1336
+ ## 0.10.6
1337
+
1338
+ ### Patch Changes
1339
+
1340
+ - [#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
1341
+
1342
+ ## 0.10.5
1343
+
1344
+ ### Patch Changes
1345
+
1346
+ - [#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
1347
+
1348
+ ## 0.10.4
1349
+
1350
+ ### Patch Changes
1351
+
1352
+ - [#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
1353
+
1354
+ ## 0.10.3
1355
+
1356
+ ### Patch Changes
1357
+
1358
+ - [#2709](https://github.com/wistia/vhs/pull/2709) [`aa8c941`](https://github.com/wistia/vhs/commit/aa8c941780a681fb16c5e76814cc1850ce818455) Thanks [@jetpackjarrett](https://github.com/jetpackjarrett)! - feat: Combobox
1359
+
1360
+ ## 0.10.2
1361
+
1362
+ ### Patch Changes
1363
+
1364
+ - [#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
1365
+
1366
+ ## 0.10.1
1367
+
1368
+ ### Patch Changes
1369
+
1370
+ - [#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
1371
+
1372
+ ## 0.10.0
1373
+
1374
+ ### Minor Changes
1375
+
1376
+ - [#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
1377
+
1378
+ ## 0.9.7
1379
+
1380
+ ### Patch Changes
1381
+
1382
+ - [#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
1383
+
1384
+ ## 0.9.6
1385
+
1386
+ ### Patch Changes
1387
+
1388
+ - [#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
1389
+
1390
+ ## 0.9.5
1391
+
1392
+ ### Patch Changes
1393
+
1394
+ - [#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
1395
+
1396
+ ## 0.9.4
1397
+
1398
+ ### Patch Changes
1399
+
1400
+ - [#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
1401
+
1402
+ ## 0.9.3
1403
+
1404
+ ### Patch Changes
1405
+
1406
+ - [#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
1407
+
1408
+ ## 0.9.2
1409
+
1410
+ ### Patch Changes
1411
+
1412
+ - [#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
1413
+
1414
+ ## 0.9.1
1415
+
1416
+ ### Patch Changes
1417
+
1418
+ - [#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
1419
+
1420
+ ## 0.9.0
1421
+
1422
+ ### Minor Changes
1423
+
1424
+ - [#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
1425
+
1426
+ ## 0.8.28
1427
+
1428
+ ### Patch Changes
1429
+
1430
+ - [#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
1431
+
1432
+ ## 0.8.27
1433
+
1434
+ ### Patch Changes
1435
+
1436
+ - [#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
1437
+
1438
+ ## 0.8.26
1439
+
1440
+ ### Patch Changes
1441
+
1442
+ - [#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
1443
+
1444
+ ## 0.8.25
1445
+
1446
+ ### Patch Changes
1447
+
1448
+ - [#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
1449
+
1450
+ ## 0.8.24
1451
+
1452
+ ### Patch Changes
1453
+
1454
+ - [#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
1455
+
1456
+ ## 0.8.23
1457
+
1458
+ ### Patch Changes
1459
+
1460
+ - [#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`
1461
+
1462
+ ## 0.8.22
1463
+
1464
+ ### Patch Changes
1465
+
1466
+ - [#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
1467
+
1468
+ ## 0.8.21
1469
+
1470
+ ### Patch Changes
1471
+
1472
+ - [#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
1473
+
1474
+ ## 0.8.20
1475
+
1476
+ ### Patch Changes
1477
+
1478
+ - [#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
1479
+
1480
+ ## 0.8.19
1481
+
1482
+ ### Patch Changes
1483
+
1484
+ - [#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
1485
+
1486
+ ## 0.8.18
1487
+
1488
+ ### Patch Changes
1489
+
1490
+ - [#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
1491
+
1492
+ ## 0.8.17
1493
+
1494
+ ### Patch Changes
1495
+
1496
+ - [#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
1497
+
1498
+ ## 0.8.16
1499
+
1500
+ ### Patch Changes
1501
+
1502
+ - [#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
1503
+
1504
+ ## 0.8.15
1505
+
1506
+ ### Patch Changes
1507
+
1508
+ - [#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
1509
+
1510
+ ## 0.8.14
1511
+
1512
+ ### Patch Changes
1513
+
1514
+ - [#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
1515
+
1516
+ ## 0.8.13
1517
+
1518
+ ### Patch Changes
1519
+
1520
+ - [#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
1521
+
1522
+ ## 0.8.12
1523
+
1524
+ ### Patch Changes
1525
+
1526
+ - [#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
1527
+
1528
+ ## 0.8.11
1529
+
1530
+ ### Patch Changes
1531
+
1532
+ - [#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
1533
+
1534
+ ## 0.8.10
1535
+
1536
+ ### Patch Changes
1537
+
1538
+ - [#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
1539
+
1540
+ ## 0.8.9
1541
+
1542
+ ### Patch Changes
1543
+
1544
+ - [#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
1545
+
1546
+ ## 0.8.8
1547
+
1548
+ ### Patch Changes
1549
+
1550
+ - [#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`
1551
+
1552
+ ## 0.8.7
1553
+
1554
+ ### Patch Changes
1555
+
1556
+ - [#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
1557
+
1558
+ ## 0.8.6
1559
+
1560
+ ### Patch Changes
1561
+
1562
+ - [#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
1563
+
1564
+ ## 0.8.5
1565
+
1566
+ ### Patch Changes
1567
+
1568
+ - [#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
1569
+
1570
+ ## 0.8.4
1571
+
1572
+ ### Patch Changes
1573
+
1574
+ - [#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
1575
+
1576
+ ## 0.8.3
1577
+
1578
+ ### Patch Changes
1579
+
1580
+ - [#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
1581
+
1582
+ ## 0.8.2
1583
+
1584
+ ### Patch Changes
1585
+
1586
+ - [#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
1587
+
1588
+ ## 0.8.1
1589
+
1590
+ ### Patch Changes
1591
+
1592
+ - [#2574](https://github.com/wistia/vhs/pull/2574) [`264507f`](https://github.com/wistia/vhs/commit/264507f78165ca5569a21306fd991bd9672c0e78) Thanks [@jetpackjarrett](https://github.com/jetpackjarrett)! - feat: InputClickToCopy
1593
+
1594
+ ## 0.8.0
1595
+
1596
+ ### Minor Changes
1597
+
1598
+ - [#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
1599
+
1600
+ ## 0.7.1
1601
+
1602
+ ### Patch Changes
1603
+
1604
+ - [#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
1605
+
1606
+ ## 0.7.0
1607
+
1608
+ ### Minor Changes
1609
+
1610
+ - [#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
1611
+
1612
+ ## 0.6.45
1613
+
1614
+ ### Patch Changes
1615
+
1616
+ - [#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
1617
+
1618
+ ## 0.6.44
1619
+
1620
+ ### Patch Changes
1621
+
1622
+ - [#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
1623
+
1624
+ ## 0.6.43
1625
+
1626
+ ### Patch Changes
1627
+
1628
+ - [#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
1629
+
1630
+ ## 0.6.42
1631
+
1632
+ ### Patch Changes
1633
+
1634
+ - [#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`
1635
+
1636
+ ## 0.6.41
1637
+
1638
+ ### Patch Changes
1639
+
1640
+ - [#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
1641
+
1642
+ ## 0.6.40
1643
+
1644
+ ### Patch Changes
1645
+
1646
+ - [#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
1647
+
1648
+ ## 0.6.39
1649
+
1650
+ ### Patch Changes
1651
+
1652
+ - [#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
1653
+
1654
+ ## 0.6.38
1655
+
1656
+ ### Patch Changes
1657
+
1658
+ - [#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
1659
+
1660
+ ## 0.6.37
1661
+
1662
+ ### Patch Changes
1663
+
1664
+ - [#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
1665
+
1666
+ ## 0.6.36
1667
+
1668
+ ### Patch Changes
1669
+
1670
+ - [#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
1671
+
1672
+ ## 0.6.35
1673
+
1674
+ ### Patch Changes
1675
+
1676
+ - [#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
1677
+
1678
+ ## 0.6.34
1679
+
1680
+ ### Patch Changes
1681
+
1682
+ - [#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
1683
+
1684
+ ## 0.6.33
1685
+
1686
+ ### Patch Changes
1687
+
1688
+ - [#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
1689
+
1690
+ ## 0.6.32
1691
+
1692
+ ### Patch Changes
1693
+
1694
+ - [#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
1695
+
1696
+ ## 0.6.31
1697
+
1698
+ ### Patch Changes
1699
+
1700
+ - [#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
1701
+
1702
+ ## 0.6.30
1703
+
1704
+ ### Patch Changes
1705
+
1706
+ - [#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
1707
+
1708
+ ## 0.6.29
1709
+
1710
+ ### Patch Changes
1711
+
1712
+ - [#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
1713
+
1714
+ ## 0.6.28
1715
+
1716
+ ### Patch Changes
1717
+
1718
+ - [#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
1719
+
1720
+ ## 0.6.27
1721
+
1722
+ ### Patch Changes
1723
+
1724
+ - [#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
1725
+
1726
+ ## 0.6.26
1727
+
1728
+ ### Patch Changes
1729
+
1730
+ - [#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
1731
+
1732
+ ## 0.6.25
1733
+
1734
+ ### Patch Changes
1735
+
1736
+ - [#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
1737
+
1738
+ ## 0.6.24
1739
+
1740
+ ### Patch Changes
1741
+
1742
+ - [#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
1743
+
1744
+ ## 0.6.23
1745
+
1746
+ ### Patch Changes
1747
+
1748
+ - [#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
1749
+
1750
+ ## 0.6.22
1751
+
1752
+ ### Patch Changes
1753
+
1754
+ - [#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
1755
+
1756
+ ## 0.6.21
1757
+
1758
+ ### Patch Changes
1759
+
1760
+ - [#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
1761
+
1762
+ ## 0.6.20
1763
+
1764
+ ### Patch Changes
1765
+
1766
+ - [#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
1767
+
1768
+ ## 0.6.19
1769
+
1770
+ ### Patch Changes
1771
+
1772
+ - [#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`
1773
+
1774
+ ## 0.6.18
1775
+
1776
+ ### Patch Changes
1777
+
1778
+ - [#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
1779
+
1780
+ ## 0.6.17
1781
+
1782
+ ### Patch Changes
1783
+
1784
+ - [#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
1785
+
1786
+ ## 0.6.16
1787
+
1788
+ ### Patch Changes
1789
+
1790
+ - [#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
1791
+
1792
+ ## 0.6.15
1793
+
1794
+ ### Patch Changes
1795
+
1796
+ - [#2434](https://github.com/wistia/vhs/pull/2434) [`11e0019`](https://github.com/wistia/vhs/commit/11e001934225d947ea120948cf46ef611b308fd8) Thanks [@jetpackjarrett](https://github.com/jetpackjarrett)! - feat: ClickRegion
1797
+
1798
+ ## 0.6.14
1799
+
1800
+ ### Patch Changes
1801
+
1802
+ - [#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
1803
+
1804
+ ## 0.6.13
1805
+
1806
+ ### Patch Changes
1807
+
1808
+ - [#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
1809
+
1810
+ ## 0.6.12
1811
+
1812
+ ### Patch Changes
1813
+
1814
+ - [#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.
1815
+
1816
+ ## 0.6.11
1817
+
1818
+ ### Patch Changes
1819
+
1820
+ - [#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
1821
+
1822
+ ## 0.6.10
1823
+
1824
+ ### Patch Changes
1825
+
1826
+ - [#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
1827
+
1828
+ ## 0.6.9
1829
+
1830
+ ### Patch Changes
1831
+
1832
+ - [#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
1833
+
1834
+ ## 0.6.8
1835
+
1836
+ ### Patch Changes
1837
+
1838
+ - [#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
1839
+
1840
+ ## 0.6.7
1841
+
1842
+ ### Patch Changes
1843
+
1844
+ - [#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
1845
+
1846
+ - [#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
1847
+
1848
+ ## 0.6.6
1849
+
1850
+ ### Patch Changes
1851
+
1852
+ - [#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
1853
+
1854
+ ## 0.6.5
1855
+
1856
+ ### Patch Changes
1857
+
1858
+ - [#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
1859
+
1860
+ ## 0.6.4
1861
+
1862
+ ### Patch Changes
1863
+
1864
+ - [#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
1865
+
1866
+ ## 0.6.3
1867
+
1868
+ ### Patch Changes
1869
+
1870
+ - [#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
1871
+
1872
+ ## 0.6.2
1873
+
1874
+ ### Patch Changes
1875
+
1876
+ - [#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
1877
+
1878
+ ## 0.6.1
1879
+
1880
+ ### Patch Changes
1881
+
1882
+ - [#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
1883
+
1884
+ ## 0.6.0
1885
+
1886
+ ### Minor Changes
1887
+
1888
+ - [#2396](https://github.com/wistia/vhs/pull/2396) [`2f3119f`](https://github.com/wistia/vhs/commit/2f3119f0be3cce85f9bf509120515f7ae1c631e0) Thanks [@jetpackjarrett](https://github.com/jetpackjarrett)! - feat: Popover
1889
+
1890
+ ### Patch Changes
1891
+
1892
+ - [#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
1893
+
1894
+ ## 0.5.7
1895
+
1896
+ ### Patch Changes
1897
+
1898
+ - [#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
1899
+
1900
+ - [#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
1901
+
1902
+ - [#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
1903
+
1904
+ ## 0.5.6
1905
+
1906
+ ### Patch Changes
1907
+
1908
+ - [#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
1909
+
1910
+ ## 0.5.5
1911
+
1912
+ ### Patch Changes
1913
+
1914
+ - [#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
1915
+
1916
+ - [#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
1917
+
1918
+ ## 0.5.4
1919
+
1920
+ ### Patch Changes
1921
+
1922
+ - [#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
1923
+
1924
+ ## 0.5.3
1925
+
1926
+ ### Patch Changes
1927
+
1928
+ - [#2378](https://github.com/wistia/vhs/pull/2378) [`718b3a6`](https://github.com/wistia/vhs/commit/718b3a649b03ee4156ceb42601e93c9009cd2b46) Thanks [@JLamp](https://github.com/JLamp)! - add EditableHeading
1929
+
1930
+ ## 0.5.2
1931
+
1932
+ ### Patch Changes
1933
+
1934
+ - [#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
1935
+
1936
+ ## 0.5.1
1937
+
1938
+ ### Patch Changes
1939
+
1940
+ - [#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
1941
+
1942
+ ## 0.5.0
1943
+
1944
+ ### Minor Changes
1945
+
1946
+ - [#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`
1947
+ change `maxCardWidth` from `number` to `string` in `DataCards`
1948
+
1949
+ ## 0.4.14
1950
+
1951
+ ### Patch Changes
1952
+
1953
+ - [#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
1954
+
1955
+ - [#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
1956
+
1957
+ - [#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
1958
+
1959
+ ## 0.4.13
1960
+
1961
+ ### Patch Changes
1962
+
1963
+ - [#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
1964
+
1965
+ ## 0.4.12
1966
+
1967
+ ### Patch Changes
1968
+
1969
+ - [#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
1970
+
1971
+ ## 0.4.11
1972
+
1973
+ ### Patch Changes
1974
+
1975
+ - [#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
1976
+
1977
+ ## 0.4.10
1978
+
1979
+ ### Patch Changes
1980
+
1981
+ - [#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
1982
+
1983
+ - [#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
1984
+
1985
+ ## 0.4.9
1986
+
1987
+ ### Patch Changes
1988
+
1989
+ - [#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
1990
+
1991
+ ## 0.4.8
1992
+
1993
+ ### Patch Changes
1994
+
1995
+ - [#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
1996
+
1997
+ ## 0.4.7
1998
+
1999
+ ### Patch Changes
2000
+
2001
+ - [#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
2002
+
2003
+ ## 0.4.6
2004
+
2005
+ ### Patch Changes
2006
+
2007
+ - [#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
2008
+
2009
+ ## 0.4.5
2010
+
2011
+ ### Patch Changes
2012
+
2013
+ - [#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
2014
+
2015
+ ## 0.4.4
2016
+
2017
+ ### Patch Changes
2018
+
2019
+ - [#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`
2020
+
2021
+ ## 0.4.3
2022
+
2023
+ ### Patch Changes
2024
+
2025
+ - [#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
2026
+
2027
+ ## 0.4.2
2028
+
2029
+ ### Patch Changes
2030
+
2031
+ - [#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
2032
+
2033
+ ## 0.4.1
2034
+
2035
+ ### Patch Changes
2036
+
2037
+ - [#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
2038
+
2039
+ ## 0.4.0
2040
+
2041
+ ### Minor Changes
2042
+
2043
+ - [#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
2044
+
2045
+ ## 0.3.2
2046
+
2047
+ ### Patch Changes
2048
+
2049
+ - [#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
2050
+
2051
+ ## 0.3.1
2052
+
2053
+ ### Patch Changes
2054
+
2055
+ - [#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
2056
+
2057
+ ## 0.3.0
2058
+
2059
+ ### Minor Changes
2060
+
2061
+ - [#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
2062
+
2063
+ ## 0.2.1
2064
+
2065
+ ### Patch Changes
2066
+
2067
+ - [#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
2068
+
2069
+ ## 0.2.0
2070
+
2071
+ ### Minor Changes
2072
+
2073
+ - [#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
2074
+
2075
+ ## 0.1.2
2076
+
2077
+ ### Patch Changes
2078
+
2079
+ - [#2252](https://github.com/wistia/vhs/pull/2252) [`1731a79`](https://github.com/wistia/vhs/commit/1731a796c4b01ee6381c97a0faabcb34a9b31fb8) Thanks [@JLamp](https://github.com/JLamp)! - add ActionButton
2080
+
2081
+ ## 0.1.1
2082
+
2083
+ ### Patch Changes
2084
+
2085
+ - [#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
2086
+
2087
+ ## 0.1.0
2088
+
2089
+ ### Minor Changes
2090
+
2091
+ - [#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
2092
+
2093
+ ## 0.0.25
2094
+
2095
+ ### Patch Changes
2096
+
2097
+ - [#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
2098
+
2099
+ ## 0.0.24
2100
+
2101
+ ### Patch Changes
2102
+
2103
+ - [#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
2104
+
2105
+ - [#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
2106
+
2107
+ ## 0.0.23
2108
+
2109
+ ### Patch Changes
2110
+
2111
+ - [#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
2112
+
2113
+ ## 0.0.22
2114
+
2115
+ ### Patch Changes
2116
+
2117
+ - [#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
2118
+
2119
+ ## 0.0.21
2120
+
2121
+ ### Patch Changes
2122
+
2123
+ - [#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
2124
+
2125
+ ## 0.0.20
2126
+
2127
+ ### Patch Changes
2128
+
2129
+ - [#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
2130
+
2131
+ ## 0.0.19
2132
+
2133
+ ### Patch Changes
2134
+
2135
+ - [#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
2136
+
2137
+ ## 0.0.18
2138
+
2139
+ ### Patch Changes
2140
+
2141
+ - [#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
2142
+
2143
+ ## 0.0.17
2144
+
2145
+ ### Patch Changes
2146
+
2147
+ - [#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
2148
+
2149
+ ## 0.0.16
2150
+
2151
+ ### Patch Changes
2152
+
2153
+ - [#2117](https://github.com/wistia/vhs/pull/2117) [`f5dd8d5`](https://github.com/wistia/vhs/commit/f5dd8d556c85bec6accdc15e01dc83fedec3ab2d) Thanks [@jetpackjarrett](https://github.com/jetpackjarrett)! - feat: Menu
2154
+
2155
+ ## 0.0.15
2156
+
2157
+ ### Patch Changes
2158
+
2159
+ - [#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
2160
+
2161
+ ## 0.0.14
2162
+
2163
+ ### Patch Changes
2164
+
2165
+ - [#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
2166
+
2167
+ ## 0.0.13
2168
+
2169
+ ### Patch Changes
2170
+
2171
+ - [#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
2172
+
2173
+ ## 0.0.12
2174
+
2175
+ ### Patch Changes
2176
+
2177
+ - [#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
2178
+
2179
+ ## 0.0.11
2180
+
2181
+ ### Patch Changes
2182
+
2183
+ - [#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
2184
+
2185
+ - [#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`
2186
+
2187
+ ## 0.0.10
2188
+
2189
+ ### Patch Changes
2190
+
2191
+ - [#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
2192
+ feat: add `Label` component
2193
+
2194
+ ## 0.0.9
2195
+
2196
+ ### Patch Changes
2197
+
2198
+ - [#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
2199
+
2200
+ ## 0.0.8
2201
+
2202
+ ### Patch Changes
2203
+
2204
+ - [#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
2205
+ - Added `colorScheme` prop to Icon
2206
+
2207
+ ## 0.0.7
2208
+
2209
+ ### Patch Changes
2210
+
2211
+ - [#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
2212
+
2213
+ ## 0.0.6
2214
+
2215
+ ### Patch Changes
2216
+
2217
+ - [#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`
2218
+
2219
+ ## 0.0.5
2220
+
2221
+ ### Patch Changes
2222
+
2223
+ - [#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'
2224
+
2225
+ ## 0.0.4
2226
+
2227
+ ### Patch Changes
2228
+
2229
+ - [#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
2230
+
2231
+ ## 0.0.3
2232
+
2233
+ ### Patch Changes
2234
+
2235
+ - [#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
2236
+
2237
+ ## 0.0.2
2238
+
2239
+ ### Patch Changes
2240
+
2241
+ - [#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
2242
+
2243
+ ## 0.0.1
2244
+
2245
+ ### Patch Changes
2246
+
2247
+ - [#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