@opencxh/ui-kit 3.120.9 → 3.123.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/dist/index.cjs.map +1 -1
- package/dist/index.js.map +1 -1
- package/dist/src/forms/Form.d.ts +6 -2
- package/package.json +1 -1
package/dist/src/forms/Form.d.ts
CHANGED
|
@@ -70,8 +70,12 @@ export interface FormGroupItem<T = any> {
|
|
|
70
70
|
export interface FormGroup<T = any> {
|
|
71
71
|
/** Group identifier */
|
|
72
72
|
id: string;
|
|
73
|
-
/**
|
|
74
|
-
|
|
73
|
+
/**
|
|
74
|
+
* Group title. Optional: a form that is one unbroken block of fields has no
|
|
75
|
+
* heading to give, and the label column already renders empty when it is
|
|
76
|
+
* absent — the type was simply stricter than the component.
|
|
77
|
+
*/
|
|
78
|
+
title?: string;
|
|
75
79
|
/** Group description */
|
|
76
80
|
description?: string;
|
|
77
81
|
/** Group items */
|