ng-form-foundry 0.5.3 → 0.5.4
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/ng-form-foundry.mjs +32 -13
- package/fesm2022/ng-form-foundry.mjs.map +1 -1
- package/index.d.ts +17 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -698,6 +698,22 @@ declare class ConfigEditorComponent implements OnDestroy {
|
|
|
698
698
|
* shows on the next rebind or structural rebuild, not immediately.
|
|
699
699
|
*/
|
|
700
700
|
readonly rootTitle: _angular_core.InputSignal<string | undefined>;
|
|
701
|
+
/**
|
|
702
|
+
* Whether selecting a tree row also expands the node's own children.
|
|
703
|
+
* Off by default: a click selects (the detail pane shows the subtree
|
|
704
|
+
* anyway) and the twisty alone controls expansion, so browsing a deep
|
|
705
|
+
* config does not keep unfolding the tree. Ancestors of the selection are
|
|
706
|
+
* always expanded — the selected row itself must stay visible.
|
|
707
|
+
*/
|
|
708
|
+
readonly expandOnClick: _angular_core.InputSignal<boolean>;
|
|
709
|
+
/**
|
|
710
|
+
* Whether the detail pane shows its top breadcrumb (the selected node's
|
|
711
|
+
* path, with the member remove control beside it). Hosts whose tree
|
|
712
|
+
* already tells the user where they are can turn it off — the section
|
|
713
|
+
* trail headings inside the detail stay, and member removal remains
|
|
714
|
+
* available on the tree rows and section headings.
|
|
715
|
+
*/
|
|
716
|
+
readonly showBreadcrumb: _angular_core.InputSignal<boolean>;
|
|
701
717
|
root: TreeNode;
|
|
702
718
|
selected: TreeNode | null;
|
|
703
719
|
/** The selected subtree as a flat, breadcrumb-separated section list. */
|
|
@@ -889,7 +905,7 @@ declare class ConfigEditorComponent implements OnDestroy {
|
|
|
889
905
|
*/
|
|
890
906
|
private escapeSeg;
|
|
891
907
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ConfigEditorComponent, never>;
|
|
892
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ConfigEditorComponent, "nff-config-editor", never, { "schema": { "alias": "schema"; "required": true; "isSignal": true; }; "formGroup": { "alias": "formGroup"; "required": true; "isSignal": true; }; "editable": { "alias": "editable"; "required": false; "isSignal": true; }; "rootTitle": { "alias": "rootTitle"; "required": false; "isSignal": true; }; }, { "editable": "editableChange"; }, never, never, true, never>;
|
|
908
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ConfigEditorComponent, "nff-config-editor", never, { "schema": { "alias": "schema"; "required": true; "isSignal": true; }; "formGroup": { "alias": "formGroup"; "required": true; "isSignal": true; }; "editable": { "alias": "editable"; "required": false; "isSignal": true; }; "rootTitle": { "alias": "rootTitle"; "required": false; "isSignal": true; }; "expandOnClick": { "alias": "expandOnClick"; "required": false; "isSignal": true; }; "showBreadcrumb": { "alias": "showBreadcrumb"; "required": false; "isSignal": true; }; }, { "editable": "editableChange"; }, never, never, true, never>;
|
|
893
909
|
}
|
|
894
910
|
|
|
895
911
|
declare class LeafRendererComponent implements AfterViewInit {
|
package/package.json
CHANGED