Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: support tailwindcss v4 #4656

Draft
wants to merge 20 commits into
base: canary
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix: redundant blur-sm issues
  • Loading branch information
winchesHe committed Jan 28, 2025
commit d193b80c1e740ee5c3a580fb712075a10d6e7037
2 changes: 1 addition & 1 deletion apps/docs/content/docs/components/checkbox-group.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ In case you need to customize the checkbox even further, you can use the `useChe
{
attribute: "validate",
type: "(value: string[]) => ValidationError | true | null | undefined",
description: "Validate input values when committing (e.g. on blur-sm), returning error messages for invalid values. Validation errors are displayed upon form submission if validationBehavior is set to native. For real-time validation, use the isInvalid prop.",
description: "Validate input values when committing (e.g. on blur), returning error messages for invalid values. Validation errors are displayed upon form submission if validationBehavior is set to native. For real-time validation, use the isInvalid prop.",
default: "-"
},
{
Expand Down
2 changes: 1 addition & 1 deletion apps/docs/content/docs/components/date-picker.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -378,7 +378,7 @@ import {I18nProvider} from "@react-aria/i18n";
{
attribute: "validate",
type: "(value: MappedDateValue<DateValue>) => ValidationError | true | null | undefined",
description: "Validate input values when committing (e.g. on blur-sm), returning error messages for invalid values.",
description: "Validate input values when committing (e.g. on blur), returning error messages for invalid values.",
default: "-"
},
{
Expand Down
2 changes: 1 addition & 1 deletion apps/docs/content/docs/components/date-range-picker.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -437,7 +437,7 @@ You can customize the `DateRangePicker` component by passing custom Tailwind CSS
{
attribute: "validate",
type: "(value: RangeValue<MappedDateValue<DateValue>>) => ValidationError | true | null | undefined",
description: "Validate input values when committing (e.g. on blur-sm), returning error messages for invalid values.",
description: "Validate input values when committing (e.g. on blur), returning error messages for invalid values.",
default: "-"
},
{
Expand Down
2 changes: 1 addition & 1 deletion apps/docs/content/docs/components/input.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,7 @@ In case you need to customize the input even further, you can use the `useInput`
{
attribute: "validate",
type: "(value: string) => ValidationError | true | null | undefined",
description: "Validate input values when committing (e.g. on blur-sm), returning error messages for invalid values.",
description: "Validate input values when committing (e.g. on blur), returning error messages for invalid values.",
default: "-"
},
{
Expand Down
2 changes: 1 addition & 1 deletion apps/docs/content/docs/components/navbar.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,7 @@ When the `NavbarItem` is active, it will have a `data-active` attribute. You can
{
attribute: "isBlurred",
type: "boolean",
description: "Whether the navbar should have a blur-sm effect or not.",
description: "Whether the navbar should have a blur effect or not.",
default: "true"
},
{
Expand Down
2 changes: 1 addition & 1 deletion apps/docs/content/docs/components/radio-group.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ In case you need to customize the radio group even further, you can use the `use
{
attribute: "validate",
type: "(value: string) => ValidationError | true | null | undefined",
description: "Validate input values when committing (e.g. on blur-sm), returning error messages for invalid values. Validation errors are displayed upon form submission if `validationBehavior` is set to `native`. For real-time validation, use the `isInvalid` prop.",
description: "Validate input values when committing (e.g. on blur), returning error messages for invalid values. Validation errors are displayed upon form submission if `validationBehavior` is set to `native`. For real-time validation, use the `isInvalid` prop.",
default: "-"
},
{
Expand Down
2 changes: 1 addition & 1 deletion apps/docs/content/docs/components/range-calendar.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -356,7 +356,7 @@ Here's the example to customize `topContent` and `bottomContent` to have some pr
{
attribute: "validate",
type: "(value: { inputValue: string, selectedKey: React.Key }) => ValidationError | true | null | undefined",
description: "Validate input values when committing (e.g. on blur-sm), returning error messages for invalid values.",
description: "Validate input values when committing (e.g. on blur), returning error messages for invalid values.",
default: "-"
},
{
Expand Down
2 changes: 1 addition & 1 deletion apps/docs/content/docs/components/textarea.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ You can use the `value` and `onValueChange` properties to control the input valu
{
attribute: "validate",
type: "(value: string) => ValidationError | true | null | undefined",
description: "Validate input values when committing (e.g. on blur-sm), returning error messages for invalid values.",
description: "Validate input values when committing (e.g. on blur), returning error messages for invalid values.",
default: "-"
},
{
Expand Down
2 changes: 1 addition & 1 deletion apps/docs/content/docs/components/time-input.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -352,7 +352,7 @@ By default, `TimeInput` displays times in either 12 or 24 hour hour format depen
{
attribute: "validate",
type: "(value: MappedTimeValue<TimeValue>) => ValidationError | true | null | undefined",
description: "Validate input values when committing (e.g. on blur-sm), returning error messages for invalid values.",
description: "Validate input values when committing (e.g. on blur), returning error messages for invalid values.",
default: "-"
},
{
Expand Down
Loading