From cad62865e4baeda599e53ab2bb25f9f99929b258 Mon Sep 17 00:00:00 2001 From: durland Date: Thu, 23 Jun 2022 06:08:33 +0200 Subject: [PATCH] [docs] link to supported props Preferably a list of all supported props + examples should be available in the docs, a link to the source definition is better than nothing. --- packages/docs/src/blitz-form/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/docs/src/blitz-form/index.md b/packages/docs/src/blitz-form/index.md index 7ff12abe..26e8bcd4 100644 --- a/packages/docs/src/blitz-form/index.md +++ b/packages/docs/src/blitz-form/index.md @@ -55,7 +55,7 @@ const schema = [ The "component" of a field in your schema can be any Vue component you have globally registered or any HTML5 tag. -Besides `id`, `label` and `component` there are many more props you can pass: `subLabel` `required` `labelPosition` `fieldClasses` `componentClasses` `parseValue` `parseInput` `events` and many more. +Besides `id`, `label` and `component` there's also: `subLabel` `required` `labelPosition` `fieldClasses` `componentClasses` `parseValue` `parseInput` `events` and many more props you can pass. [See the source for a full list.](https://github.com/CyCraft/blitzar/blob/production/packages/types/src/BlitzFieldProps.ts) ### Basic Example