@voltro/ui 0.28.0 → 0.30.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +655 -0
- package/dist/index.d.ts +5 -0
- package/dist/index.js +139 -107
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -443,6 +443,11 @@ export declare interface WidgetProps {
|
|
|
443
443
|
readonly required: boolean;
|
|
444
444
|
readonly disabled?: boolean;
|
|
445
445
|
readonly options?: ReadonlyArray<FieldOption>;
|
|
446
|
+
/** Help / instruction text for the field. Rendered as a `<p>` associated to
|
|
447
|
+
* the control via `aria-describedby`, so a screen reader announces it with
|
|
448
|
+
* the label (WCAG 3.3.2 Labels or Instructions). Sourced from the input
|
|
449
|
+
* Schema's `description` annotation by `<AutoForm>`. */
|
|
450
|
+
readonly description?: string;
|
|
446
451
|
}
|
|
447
452
|
|
|
448
453
|
export declare type WidgetRegistry = Partial<Record<WidgetKind, Widget>>;
|