@breadstone/mosaik-elements-angular 0.0.285 → 0.0.286
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
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@breadstone/mosaik-elements-angular",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.286",
|
|
4
4
|
"description": "Mosaik elements for Angular.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "andre.wehlert <awehlert@breadstone.de> (https://www.breadstone.de)",
|
|
@@ -19,8 +19,8 @@
|
|
|
19
19
|
"rxjs": "*"
|
|
20
20
|
},
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@breadstone/mosaik-elements": "^0.0.
|
|
23
|
-
"@breadstone/mosaik-elements-foundation": "^0.0.
|
|
22
|
+
"@breadstone/mosaik-elements": "^0.0.286",
|
|
23
|
+
"@breadstone/mosaik-elements-foundation": "^0.0.286",
|
|
24
24
|
"tslib": "^2.8.1"
|
|
25
25
|
}
|
|
26
26
|
}
|
|
@@ -51209,6 +51209,7 @@ declare abstract class PortalComponent extends BasePortalOutlet implements OnIni
|
|
|
51209
51209
|
private readonly _element;
|
|
51210
51210
|
private readonly _focusTrapFactory;
|
|
51211
51211
|
private readonly _document;
|
|
51212
|
+
private readonly _overlayRef;
|
|
51212
51213
|
private _focusTrap;
|
|
51213
51214
|
private _elementFocusedBeforeOpened;
|
|
51214
51215
|
/**
|
|
@@ -51259,6 +51260,18 @@ declare abstract class PortalComponent extends BasePortalOutlet implements OnIni
|
|
|
51259
51260
|
* @private
|
|
51260
51261
|
*/
|
|
51261
51262
|
private savePreviouslyFocusedElement;
|
|
51263
|
+
/**
|
|
51264
|
+
* @private
|
|
51265
|
+
*/
|
|
51266
|
+
private focusFirstTabbableDescendant;
|
|
51267
|
+
/**
|
|
51268
|
+
* @private
|
|
51269
|
+
*/
|
|
51270
|
+
private findFirstTabbableDescendant;
|
|
51271
|
+
/**
|
|
51272
|
+
* @private
|
|
51273
|
+
*/
|
|
51274
|
+
private isTabbable;
|
|
51262
51275
|
static ɵfac: i0.ɵɵFactoryDeclaration<PortalComponent, never>;
|
|
51263
51276
|
static ɵdir: i0.ɵɵDirectiveDeclaration<PortalComponent, never, never, {}, {}, never, never, true, never>;
|
|
51264
51277
|
}
|
|
@@ -51549,7 +51562,7 @@ declare abstract class PortalProvider {
|
|
|
51549
51562
|
/**
|
|
51550
51563
|
* @protected
|
|
51551
51564
|
*/
|
|
51552
|
-
protected createPortal<TPortal extends PortalComponent>(component: Type<TPortal>, config?: unknown): ComponentPortal<TPortal>;
|
|
51565
|
+
protected createPortal<TPortal extends PortalComponent>(component: Type<TPortal>, overlayRef: OverlayRef, config?: unknown): ComponentPortal<TPortal>;
|
|
51553
51566
|
/**
|
|
51554
51567
|
* @protected
|
|
51555
51568
|
*/
|