Skip to content

Commit 2a0ed1d

Browse files
committed
fix(docs): correct styleName references in radix combobox and chart docs
1 parent c9930b7 commit 2a0ed1d

2 files changed

Lines changed: 12 additions & 12 deletions

File tree

apps/v4/content/docs/components/radix/chart.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -595,7 +595,7 @@ This prop adds keyboard access and screen reader support to your charts.
595595
To enable RTL support in shadcn/ui, see the [RTL configuration guide](/docs/rtl).
596596

597597
<ComponentPreview
598-
styleName="base-nova"
598+
styleName="radix-nova"
599599
name="chart-rtl"
600600
direction="rtl"
601601
previewClassName="h-92"

apps/v4/content/docs/components/radix/combobox.mdx

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ links:
99
---
1010

1111
<ComponentPreview
12-
styleName="base-nova"
12+
styleName="radix-nova"
1313
name="combobox-demo"
1414
description="A combobox with a list of frameworks."
1515
/>
@@ -44,7 +44,7 @@ npm install @base-ui/react
4444
<ComponentSource
4545
name="combobox"
4646
title="components/ui/combobox.tsx"
47-
styleName="base-nova"
47+
styleName="radix-nova"
4848
/>
4949

5050
<Step>Update the import paths to match your project setup.</Step>
@@ -256,55 +256,55 @@ export function ExampleComboboxMultiple() {
256256

257257
A simple combobox with a list of frameworks.
258258

259-
<ComponentPreview styleName="base-nova" name="combobox-basic" />
259+
<ComponentPreview styleName="radix-nova" name="combobox-basic" />
260260

261261
### Multiple
262262

263263
A combobox with multiple selection using `multiple` and `ComboboxChips`.
264264

265-
<ComponentPreview styleName="base-nova" name="combobox-multiple" />
265+
<ComponentPreview styleName="radix-nova" name="combobox-multiple" />
266266

267267
### Clear Button
268268

269269
Use the `showClear` prop to show a clear button.
270270

271-
<ComponentPreview styleName="base-nova" name="combobox-clear" />
271+
<ComponentPreview styleName="radix-nova" name="combobox-clear" />
272272

273273
### Groups
274274

275275
Use `ComboboxGroup` and `ComboboxSeparator` to group items.
276276

277-
<ComponentPreview styleName="base-nova" name="combobox-groups" />
277+
<ComponentPreview styleName="radix-nova" name="combobox-groups" />
278278

279279
### Custom Items
280280

281281
You can render a custom component inside `ComboboxItem`.
282282

283-
<ComponentPreview styleName="base-nova" name="combobox-custom" />
283+
<ComponentPreview styleName="radix-nova" name="combobox-custom" />
284284

285285
### Invalid
286286

287287
Use the `aria-invalid` prop to make the combobox invalid.
288288

289-
<ComponentPreview styleName="base-nova" name="combobox-invalid" />
289+
<ComponentPreview styleName="radix-nova" name="combobox-invalid" />
290290

291291
### Disabled
292292

293293
Use the `disabled` prop to disable the combobox.
294294

295-
<ComponentPreview styleName="base-nova" name="combobox-disabled" />
295+
<ComponentPreview styleName="radix-nova" name="combobox-disabled" />
296296

297297
### Auto Highlight
298298

299299
Use the `autoHighlight` prop to automatically highlight the first item on filter.
300300

301-
<ComponentPreview styleName="base-nova" name="combobox-auto-highlight" />
301+
<ComponentPreview styleName="radix-nova" name="combobox-auto-highlight" />
302302

303303
### Popup
304304

305305
You can trigger the combobox from a button or any other component by using the `render` prop. Move the `ComboboxInput` inside the `ComboboxContent`.
306306

307-
<ComponentPreview styleName="base-nova" name="combobox-popup" />
307+
<ComponentPreview styleName="radix-nova" name="combobox-popup" />
308308

309309
### Input Group
310310

0 commit comments

Comments
 (0)