@skyux/popovers 7.9.0 → 7.9.1
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/documentation.json +321 -247
- package/esm2020/lib/modules/dropdown/dropdown.component.mjs +21 -7
- package/esm2020/lib/modules/popover/popover.component.mjs +22 -7
- package/fesm2015/skyux-popovers.mjs +41 -11
- package/fesm2015/skyux-popovers.mjs.map +1 -1
- package/fesm2020/skyux-popovers.mjs +39 -11
- package/fesm2020/skyux-popovers.mjs.map +1 -1
- package/lib/modules/dropdown/dropdown.component.d.ts +3 -3
- package/lib/modules/popover/popover.component.d.ts +3 -3
- package/package.json +6 -6
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ChangeDetectorRef, ElementRef, OnDestroy, OnInit, TemplateRef } from '@angular/core';
|
|
2
|
-
import { SkyAffixService, SkyLogService, SkyOverlayService } from '@skyux/core';
|
|
2
|
+
import { SkyAffixService, SkyLogService, SkyOverlayService, SkyStackingContext } from '@skyux/core';
|
|
3
3
|
import { SkyThemeService } from '@skyux/theme';
|
|
4
4
|
import { Subject } from 'rxjs';
|
|
5
5
|
import { SkyDropdownButtonType } from './types/dropdown-button-type';
|
|
@@ -84,9 +84,9 @@ export declare class SkyDropdownComponent implements OnInit, OnDestroy {
|
|
|
84
84
|
menuContainerTemplateRef: TemplateRef<unknown> | undefined;
|
|
85
85
|
set triggerButton(value: ElementRef | undefined);
|
|
86
86
|
get triggerButton(): ElementRef | undefined;
|
|
87
|
-
constructor(changeDetector: ChangeDetectorRef, affixService: SkyAffixService, overlayService: SkyOverlayService, logService: SkyLogService, themeSvc?: SkyThemeService);
|
|
87
|
+
constructor(changeDetector: ChangeDetectorRef, affixService: SkyAffixService, overlayService: SkyOverlayService, logService: SkyLogService, themeSvc?: SkyThemeService, stackingContext?: SkyStackingContext);
|
|
88
88
|
ngOnInit(): void;
|
|
89
89
|
ngOnDestroy(): void;
|
|
90
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SkyDropdownComponent, [null, null, null, null, { optional: true; }]>;
|
|
90
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SkyDropdownComponent, [null, null, null, null, { optional: true; }, { optional: true; }]>;
|
|
91
91
|
static ɵcmp: i0.ɵɵComponentDeclaration<SkyDropdownComponent, "sky-dropdown", never, { "buttonStyle": "buttonStyle"; "buttonType": "buttonType"; "disabled": "disabled"; "dismissOnBlur": "dismissOnBlur"; "label": "label"; "horizontalAlignment": "horizontalAlignment"; "messageStream": "messageStream"; "title": "title"; "trigger": "trigger"; }, {}, never, ["sky-dropdown-button", "sky-dropdown-menu"], false>;
|
|
92
92
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ElementRef, EventEmitter, OnDestroy, TemplateRef } from '@angular/core';
|
|
2
|
-
import { SkyOverlayService } from '@skyux/core';
|
|
2
|
+
import { SkyOverlayService, SkyStackingContext } from '@skyux/core';
|
|
3
3
|
import { SkyPopoverAlignment } from './types/popover-alignment';
|
|
4
4
|
import { SkyPopoverPlacement } from './types/popover-placement';
|
|
5
5
|
import { SkyPopoverType } from './types/popover-type';
|
|
@@ -58,7 +58,7 @@ export declare class SkyPopoverComponent implements OnDestroy {
|
|
|
58
58
|
enableAnimations: boolean;
|
|
59
59
|
isMouseEnter: boolean;
|
|
60
60
|
templateRef: TemplateRef<unknown> | undefined;
|
|
61
|
-
constructor(overlayService: SkyOverlayService);
|
|
61
|
+
constructor(overlayService: SkyOverlayService, stackingContext?: SkyStackingContext);
|
|
62
62
|
ngOnDestroy(): void;
|
|
63
63
|
/**
|
|
64
64
|
* Positions the popover next to a given caller element.
|
|
@@ -83,6 +83,6 @@ export declare class SkyPopoverComponent implements OnDestroy {
|
|
|
83
83
|
* @internal
|
|
84
84
|
*/
|
|
85
85
|
markForCloseOnMouseLeave(): void;
|
|
86
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SkyPopoverComponent,
|
|
86
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SkyPopoverComponent, [null, { optional: true; }]>;
|
|
87
87
|
static ɵcmp: i0.ɵɵComponentDeclaration<SkyPopoverComponent, "sky-popover", never, { "alignment": "alignment"; "dismissOnBlur": "dismissOnBlur"; "placement": "placement"; "popoverTitle": "popoverTitle"; "popoverType": "popoverType"; }, { "popoverClosed": "popoverClosed"; "popoverOpened": "popoverOpened"; }, never, ["*"], false>;
|
|
88
88
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@skyux/popovers",
|
|
3
|
-
"version": "7.9.
|
|
3
|
+
"version": "7.9.1",
|
|
4
4
|
"author": "Blackbaud, Inc.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"blackbaud",
|
|
@@ -44,11 +44,11 @@
|
|
|
44
44
|
"@angular/common": "^14.2.11",
|
|
45
45
|
"@angular/core": "^14.2.11",
|
|
46
46
|
"@angular/platform-browser": "^14.2.11",
|
|
47
|
-
"@skyux-sdk/testing": "7.9.
|
|
48
|
-
"@skyux/core": "7.9.
|
|
49
|
-
"@skyux/i18n": "7.9.
|
|
50
|
-
"@skyux/indicators": "7.9.
|
|
51
|
-
"@skyux/theme": "7.9.
|
|
47
|
+
"@skyux-sdk/testing": "7.9.1",
|
|
48
|
+
"@skyux/core": "7.9.1",
|
|
49
|
+
"@skyux/i18n": "7.9.1",
|
|
50
|
+
"@skyux/indicators": "7.9.1",
|
|
51
|
+
"@skyux/theme": "7.9.1"
|
|
52
52
|
},
|
|
53
53
|
"dependencies": {
|
|
54
54
|
"tslib": "^2.3.1"
|