From e1a18ff71cf46bf8be99f41738d7547d4126ee33 Mon Sep 17 00:00:00 2001 From: Reid Barber Date: Thu, 9 Oct 2025 17:11:38 -0500 Subject: [PATCH 1/2] fix starters type build --- starters/docs/src/ColorPicker.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/starters/docs/src/ColorPicker.tsx b/starters/docs/src/ColorPicker.tsx index 6e6c83f6715..218ee783c10 100644 --- a/starters/docs/src/ColorPicker.tsx +++ b/starters/docs/src/ColorPicker.tsx @@ -13,7 +13,7 @@ import {Popover} from './Popover'; import './ColorPicker.css'; -export interface ColorPickerProps extends AriaColorPickerProps { +export interface ColorPickerProps extends Omit { label?: string; children?: React.ReactNode; } From bca3734eee643b6f28b39ede53b23ff637b4d272 Mon Sep 17 00:00:00 2001 From: Reid Barber Date: Thu, 9 Oct 2025 17:12:03 -0500 Subject: [PATCH 2/2] fix other example --- starters/tailwind/src/ColorPicker.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/starters/tailwind/src/ColorPicker.tsx b/starters/tailwind/src/ColorPicker.tsx index 30391f433d7..3ae89717e28 100644 --- a/starters/tailwind/src/ColorPicker.tsx +++ b/starters/tailwind/src/ColorPicker.tsx @@ -15,7 +15,7 @@ const buttonStyles = tv({ base: 'border-0 bg-transparent flex gap-2 items-center cursor-default rounded-xs text-sm text-gray-800 dark:text-gray-200' }); -export interface ColorPickerProps extends AriaColorPickerProps { +export interface ColorPickerProps extends Omit { label?: string; children?: React.ReactNode; }