mirror of
https://github.com/nextui-org/nextui.git
synced 2025-12-08 19:26:11 +00:00
* fix(form): use native as default validation behavior * docs(form): delete explicit validationBehavior=native * test(form): adjusted form test validation behaviors * chore(form): adjusted stories with forms * chore(changeset): changed form default validation behavior to native * chore(changeset): removed packages with only test changes * chore(changeset): change to patch * chore(changeset): update package name * refactor(docs): update package name * refactor(docs): update to heroui --------- Co-authored-by: աӄա <wingkwong.code@gmail.com>
24 lines
662 B
TypeScript
24 lines
662 B
TypeScript
import demo from "./demo";
|
|
import usage from "./usage";
|
|
import controlled from "./controlled";
|
|
import nativeValidation from "./native-validation";
|
|
import customErrorMessages from "./custom-error-messages";
|
|
import customValidation from "./custom-validation";
|
|
import customValidationAria from "./custom-validation-aria";
|
|
import realTimeValidation from "./real-time-validation";
|
|
import serverValidation from "./server-validation";
|
|
import events from "./events";
|
|
|
|
export const formContent = {
|
|
demo,
|
|
usage,
|
|
controlled,
|
|
nativeValidation,
|
|
customErrorMessages,
|
|
customValidation,
|
|
customValidationAria,
|
|
realTimeValidation,
|
|
serverValidation,
|
|
events,
|
|
};
|