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