@skyux/popovers 9.2.1 → 9.3.0
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 +910 -864
- package/esm2022/lib/modules/dropdown/dropdown.component.mjs +38 -33
- package/esm2022/lib/modules/shared/sky-popovers-resources.module.mjs +4 -1
- package/fesm2022/skyux-popovers.mjs +40 -32
- package/fesm2022/skyux-popovers.mjs.map +1 -1
- package/lib/modules/dropdown/dropdown.component.d.ts +4 -1
- package/package.json +6 -6
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { ElementRef, OnDestroy, OnInit, TemplateRef } from '@angular/core';
|
|
2
|
-
import {
|
|
2
|
+
import { SkyContentInfo } from '@skyux/core';
|
|
3
|
+
import { Observable, Subject } from 'rxjs';
|
|
3
4
|
import { SkyDropdownButtonType } from './types/dropdown-button-type';
|
|
4
5
|
import { SkyDropdownHorizontalAlignment } from './types/dropdown-horizontal-alignment';
|
|
5
6
|
import { SkyDropdownMessage } from './types/dropdown-message';
|
|
@@ -44,6 +45,7 @@ export declare class SkyDropdownComponent implements OnInit, OnDestroy {
|
|
|
44
45
|
* For more information about the `aria-label` attribute, see the [WAI-ARIA definition](https://www.w3.org/TR/wai-aria/#aria-label).
|
|
45
46
|
*/
|
|
46
47
|
label: string | undefined;
|
|
48
|
+
protected contentInfoObs: Observable<SkyContentInfo> | undefined;
|
|
47
49
|
/**
|
|
48
50
|
* The horizontal alignment of the dropdown menu in relation to the dropdown button.
|
|
49
51
|
* @default "left"
|
|
@@ -82,6 +84,7 @@ export declare class SkyDropdownComponent implements OnInit, OnDestroy {
|
|
|
82
84
|
menuContainerTemplateRef: TemplateRef<unknown> | undefined;
|
|
83
85
|
set triggerButton(value: ElementRef | undefined);
|
|
84
86
|
get triggerButton(): ElementRef | undefined;
|
|
87
|
+
constructor();
|
|
85
88
|
ngOnInit(): void;
|
|
86
89
|
ngOnDestroy(): void;
|
|
87
90
|
static ɵfac: i0.ɵɵFactoryDeclaration<SkyDropdownComponent, never>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@skyux/popovers",
|
|
3
|
-
"version": "9.
|
|
3
|
+
"version": "9.3.0",
|
|
4
4
|
"author": "Blackbaud, Inc.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"blackbaud",
|
|
@@ -41,11 +41,11 @@
|
|
|
41
41
|
"@angular/common": "^16.2.5",
|
|
42
42
|
"@angular/core": "^16.2.5",
|
|
43
43
|
"@angular/platform-browser": "^16.2.5",
|
|
44
|
-
"@skyux-sdk/testing": "9.
|
|
45
|
-
"@skyux/core": "9.
|
|
46
|
-
"@skyux/i18n": "9.
|
|
47
|
-
"@skyux/indicators": "9.
|
|
48
|
-
"@skyux/theme": "9.
|
|
44
|
+
"@skyux-sdk/testing": "9.3.0",
|
|
45
|
+
"@skyux/core": "9.3.0",
|
|
46
|
+
"@skyux/i18n": "9.3.0",
|
|
47
|
+
"@skyux/indicators": "9.3.0",
|
|
48
|
+
"@skyux/theme": "9.3.0"
|
|
49
49
|
},
|
|
50
50
|
"dependencies": {
|
|
51
51
|
"tslib": "^2.6.2"
|