@skyux/popovers 7.0.0-beta.8 → 7.0.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 +25 -9
- package/esm2020/lib/modules/dropdown/dropdown-button.component.mjs +4 -4
- package/esm2020/lib/modules/dropdown/dropdown-item.component.mjs +6 -6
- package/esm2020/lib/modules/dropdown/dropdown-menu.component.mjs +6 -7
- package/esm2020/lib/modules/dropdown/dropdown.component.mjs +10 -11
- package/esm2020/lib/modules/dropdown/dropdown.module.mjs +5 -5
- package/esm2020/lib/modules/popover/popover-adapter.service.mjs +4 -4
- package/esm2020/lib/modules/popover/popover-content.component.mjs +6 -8
- package/esm2020/lib/modules/popover/popover.component.mjs +4 -5
- package/esm2020/lib/modules/popover/popover.directive.mjs +5 -5
- package/esm2020/lib/modules/popover/popover.module.mjs +5 -5
- package/esm2020/lib/modules/shared/sky-popovers-resources.module.mjs +5 -5
- package/esm2020/testing/dropdown/dropdown-testing.module.mjs +5 -5
- package/esm2020/testing/popover/popover-testing.module.mjs +5 -5
- package/fesm2015/skyux-popovers-testing.mjs +8 -8
- package/fesm2015/skyux-popovers-testing.mjs.map +1 -1
- package/fesm2015/skyux-popovers.mjs +42 -42
- package/fesm2015/skyux-popovers.mjs.map +1 -1
- package/fesm2020/skyux-popovers-testing.mjs +8 -8
- package/fesm2020/skyux-popovers-testing.mjs.map +1 -1
- package/fesm2020/skyux-popovers.mjs +52 -52
- package/fesm2020/skyux-popovers.mjs.map +1 -1
- package/lib/modules/dropdown/dropdown.component.d.ts +3 -3
- package/package.json +10 -10
|
@@ -13,8 +13,8 @@ import * as i0 from "@angular/core";
|
|
|
13
13
|
export declare class SkyDropdownComponent implements OnInit, OnDestroy {
|
|
14
14
|
#private;
|
|
15
15
|
/**
|
|
16
|
-
* Specifies a background color for the dropdown button. Available values are `default
|
|
17
|
-
* `primary`. These values set the background color from the
|
|
16
|
+
* Specifies a background color for the dropdown button. Available values are `default`,
|
|
17
|
+
* `primary`, and `link`. These values set the background color and hover behavior from the
|
|
18
18
|
* [secondary and primary button classes](https://developer.blackbaud.com/skyux/components/button) respectively.
|
|
19
19
|
* @default "default"
|
|
20
20
|
*/
|
|
@@ -22,7 +22,7 @@ export declare class SkyDropdownComponent implements OnInit, OnDestroy {
|
|
|
22
22
|
get buttonStyle(): string;
|
|
23
23
|
/**
|
|
24
24
|
* Specifies the type of button to render as the dropdown's trigger element. To display a button
|
|
25
|
-
* with
|
|
25
|
+
* with a caret, specify `'select'` and render the button text or icon in a
|
|
26
26
|
* `sky-dropdown-button` element. To display a round button with an ellipsis, specify
|
|
27
27
|
* `'context-menu'`.
|
|
28
28
|
* @default "select"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@skyux/popovers",
|
|
3
|
-
"version": "7.0.0
|
|
3
|
+
"version": "7.0.0",
|
|
4
4
|
"author": "Blackbaud, Inc.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"blackbaud",
|
|
@@ -40,15 +40,15 @@
|
|
|
40
40
|
}
|
|
41
41
|
},
|
|
42
42
|
"peerDependencies": {
|
|
43
|
-
"@angular/animations": "^14.2.
|
|
44
|
-
"@angular/common": "^14.2.
|
|
45
|
-
"@angular/core": "^14.2.
|
|
46
|
-
"@angular/platform-browser": "^14.2.
|
|
47
|
-
"@skyux-sdk/testing": "7.0.0
|
|
48
|
-
"@skyux/core": "7.0.0
|
|
49
|
-
"@skyux/i18n": "7.0.0
|
|
50
|
-
"@skyux/indicators": "7.0.0
|
|
51
|
-
"@skyux/theme": "7.0.0
|
|
43
|
+
"@angular/animations": "^14.2.11",
|
|
44
|
+
"@angular/common": "^14.2.11",
|
|
45
|
+
"@angular/core": "^14.2.11",
|
|
46
|
+
"@angular/platform-browser": "^14.2.11",
|
|
47
|
+
"@skyux-sdk/testing": "7.0.0",
|
|
48
|
+
"@skyux/core": "7.0.0",
|
|
49
|
+
"@skyux/i18n": "7.0.0",
|
|
50
|
+
"@skyux/indicators": "7.0.0",
|
|
51
|
+
"@skyux/theme": "7.0.0"
|
|
52
52
|
},
|
|
53
53
|
"dependencies": {
|
|
54
54
|
"tslib": "^2.3.1"
|