@energycap/components 0.43.0 → 0.43.1-ECAP-28460-autofocus-issue.20250221-1452
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/esm2022/lib/display/dialog/dialog-content.mjs +1 -1
- package/esm2022/lib/display/dialog/dialog.component.mjs +9 -3
- package/fesm2022/energycap-components.mjs +8 -2
- package/fesm2022/energycap-components.mjs.map +1 -1
- package/lib/display/dialog/dialog-content.d.ts +1 -0
- package/lib/display/dialog/dialog.component.d.ts +4 -0
- package/package.json +1 -1
@@ -84,6 +84,10 @@ export declare class DialogComponent {
|
|
84
84
|
* A reference of the component once it has been loaded
|
85
85
|
*/
|
86
86
|
componentRef?: ComponentRef<any>;
|
87
|
+
/** Used to trigger the cdk trap focus auto capture to detect changes and find the first
|
88
|
+
* available field to focus in a dialog.
|
89
|
+
*/
|
90
|
+
updateCdkTrapFocusAutoCapture: boolean;
|
87
91
|
private previouslyFocusedElement;
|
88
92
|
constructor(componentFactoryResolver: ComponentFactoryResolver, windowService: WindowService, dialogService: DialogService, documentRef: Document);
|
89
93
|
ngOnInit(): void;
|