@aquera/ngx-smart-table 0.0.40 → 0.0.41
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/package.json
CHANGED
|
@@ -6206,6 +6206,12 @@ declare class StConditionRuleComponent {
|
|
|
6206
6206
|
* sub-rules inside a group — v1's 1-level nesting forbids groups-in-groups).
|
|
6207
6207
|
*/
|
|
6208
6208
|
canInsertGroup: boolean;
|
|
6209
|
+
/**
|
|
6210
|
+
* True when this rule is a sub-condition inside a group. Only then does the
|
|
6211
|
+
* first row reserve the connector column (via a spacer) so the sub-conditions
|
|
6212
|
+
* align. Top-level rows are left flush — parent-level layout is unchanged.
|
|
6213
|
+
*/
|
|
6214
|
+
inGroup: boolean;
|
|
6209
6215
|
readonly ruleChange: EventEmitter<SubCondition>;
|
|
6210
6216
|
readonly remove: EventEmitter<void>;
|
|
6211
6217
|
/** User asked to insert a fresh peer Condition directly below this row. */
|
|
@@ -6226,13 +6232,13 @@ declare class StConditionRuleComponent {
|
|
|
6226
6232
|
onOperatorChange(event: Event): void;
|
|
6227
6233
|
onValueChange(value: ConditionValue): void;
|
|
6228
6234
|
onRemoveClick(): void;
|
|
6229
|
-
onInsertBelowClick(): void;
|
|
6235
|
+
onInsertBelowClick(event?: MouseEvent): void;
|
|
6230
6236
|
onAddMenuSelect(event: Event): void;
|
|
6231
6237
|
/** Pick a sensible default operator for a given field: first allowed operator. */
|
|
6232
6238
|
private pickDefaultOperator;
|
|
6233
6239
|
private emit;
|
|
6234
6240
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<StConditionRuleComponent, never>;
|
|
6235
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<StConditionRuleComponent, "st-condition-rule", never, { "rule": { "alias": "rule"; "required": true; }; "config": { "alias": "config"; "required": true; }; "isFirst": { "alias": "isFirst"; "required": false; }; "canRemove": { "alias": "canRemove"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "canInsertGroup": { "alias": "canInsertGroup"; "required": false; }; }, { "ruleChange": "ruleChange"; "remove": "remove"; "insertBelow": "insertBelow"; "insertGroupBelow": "insertGroupBelow"; }, never, never, true, never>;
|
|
6241
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<StConditionRuleComponent, "st-condition-rule", never, { "rule": { "alias": "rule"; "required": true; }; "config": { "alias": "config"; "required": true; }; "isFirst": { "alias": "isFirst"; "required": false; }; "canRemove": { "alias": "canRemove"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "canInsertGroup": { "alias": "canInsertGroup"; "required": false; }; "inGroup": { "alias": "inGroup"; "required": false; }; }, { "ruleChange": "ruleChange"; "remove": "remove"; "insertBelow": "insertBelow"; "insertGroupBelow": "insertGroupBelow"; }, never, never, true, never>;
|
|
6236
6242
|
}
|
|
6237
6243
|
|
|
6238
6244
|
/**
|