@fuentis/phoenix-ui 0.0.9-alpha.632 → 0.0.9-alpha.633
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/index.d.ts
CHANGED
|
@@ -1213,6 +1213,14 @@ interface MetaFieldConfig {
|
|
|
1213
1213
|
validators?: MetaValidators;
|
|
1214
1214
|
style: {
|
|
1215
1215
|
colWidth: string;
|
|
1216
|
+
/**
|
|
1217
|
+
* When true, this field forces a hard line break: it starts a brand new
|
|
1218
|
+
* grid row regardless of how much space is left in the current row
|
|
1219
|
+
* (i.e. regardless of whether colWidths in the current row sum to 12).
|
|
1220
|
+
* Default (unset/false): fields keep flowing/wrapping into the current
|
|
1221
|
+
* row as space allows (existing behavior).
|
|
1222
|
+
*/
|
|
1223
|
+
newRow?: boolean;
|
|
1216
1224
|
};
|
|
1217
1225
|
}
|
|
1218
1226
|
type AssignExtra = {
|
|
@@ -1351,6 +1359,11 @@ declare class MetaFormV2Component implements OnChanges, OnDestroy {
|
|
|
1351
1359
|
get groupedControls(): any[];
|
|
1352
1360
|
/** Returns flat schema structure (grid mode) */
|
|
1353
1361
|
get flatControls(): any[];
|
|
1362
|
+
/**
|
|
1363
|
+
* Flat schema split into row chunks, honoring `style.newRow` hard breaks.
|
|
1364
|
+
* Used by the non-grouped grid template.
|
|
1365
|
+
*/
|
|
1366
|
+
get controlRows(): any[][];
|
|
1354
1367
|
/** TrackBy for group rendering */
|
|
1355
1368
|
groupTrack(g: any, idx: number): any;
|
|
1356
1369
|
/**
|
|
@@ -1509,6 +1522,8 @@ declare class MetaFormGroupV2Component {
|
|
|
1509
1522
|
group: MetaFormGroupConfig;
|
|
1510
1523
|
form: FormGroup;
|
|
1511
1524
|
readOnly: boolean;
|
|
1525
|
+
/** Group's fields split into row chunks, honoring `style.newRow` hard breaks. */
|
|
1526
|
+
get rows(): any[][];
|
|
1512
1527
|
static ɵfac: i0.ɵɵFactoryDeclaration<MetaFormGroupV2Component, never>;
|
|
1513
1528
|
static ɵcmp: i0.ɵɵComponentDeclaration<MetaFormGroupV2Component, "phoenix-meta-form-group-v2", never, { "group": { "alias": "group"; "required": true; }; "form": { "alias": "form"; "required": true; }; "readOnly": { "alias": "readOnly"; "required": false; }; }, {}, never, never, true, never>;
|
|
1514
1529
|
}
|