@skyux/flyout 7.0.0-beta.2 → 7.0.0-beta.4
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 +162 -175
- package/esm2020/lib/modules/flyout/flyout-adapter.service.mjs +19 -11
- package/esm2020/lib/modules/flyout/flyout-instance.mjs +22 -18
- package/esm2020/lib/modules/flyout/flyout-iterator.component.mjs +13 -12
- package/esm2020/lib/modules/flyout/flyout-media-query.service.mjs +11 -12
- package/esm2020/lib/modules/flyout/flyout.component.mjs +267 -249
- package/esm2020/lib/modules/flyout/flyout.service.mjs +110 -115
- package/esm2020/lib/modules/flyout/types/flyout-config-internal.mjs +2 -0
- package/fesm2015/skyux-flyout.mjs +436 -415
- package/fesm2015/skyux-flyout.mjs.map +1 -1
- package/fesm2020/skyux-flyout.mjs +432 -412
- package/fesm2020/skyux-flyout.mjs.map +1 -1
- package/lib/modules/flyout/flyout-adapter.service.d.ts +2 -4
- package/lib/modules/flyout/flyout-instance.d.ts +2 -7
- package/lib/modules/flyout/flyout-iterator.component.d.ts +3 -5
- package/lib/modules/flyout/flyout-media-query.service.d.ts +2 -3
- package/lib/modules/flyout/flyout.component.d.ts +13 -39
- package/lib/modules/flyout/flyout.service.d.ts +4 -17
- package/lib/modules/flyout/types/flyout-config-internal.d.ts +26 -0
- package/package.json +6 -6
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { SkyFlyoutConfig } from './flyout-config';
|
|
2
|
+
/**
|
|
3
|
+
* Type to represent the flyout configuration after default values have been applied.
|
|
4
|
+
* @internal
|
|
5
|
+
*/
|
|
6
|
+
export interface SkyFlyoutConfigInternal extends SkyFlyoutConfig {
|
|
7
|
+
/**
|
|
8
|
+
* Specifies the default width of the flyout container. If you do not provide a width,
|
|
9
|
+
* the flyout defaults to half the width of its container.
|
|
10
|
+
*/
|
|
11
|
+
defaultWidth: number;
|
|
12
|
+
/**
|
|
13
|
+
* Specifies the minimum resize width of the flyout container.
|
|
14
|
+
* @default 320
|
|
15
|
+
*/
|
|
16
|
+
minWidth: number;
|
|
17
|
+
/**
|
|
18
|
+
* Specifies the maximum resize width of the flyout container.
|
|
19
|
+
* @default defaultWidth
|
|
20
|
+
*/
|
|
21
|
+
maxWidth: number;
|
|
22
|
+
/**
|
|
23
|
+
* Specifies an array of custom providers to pass to the component's constructor.
|
|
24
|
+
*/
|
|
25
|
+
providers: any[];
|
|
26
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@skyux/flyout",
|
|
3
|
-
"version": "7.0.0-beta.
|
|
3
|
+
"version": "7.0.0-beta.4",
|
|
4
4
|
"author": "Blackbaud, Inc.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"blackbaud",
|
|
@@ -38,11 +38,11 @@
|
|
|
38
38
|
"@angular/core": "^14.2.0",
|
|
39
39
|
"@angular/forms": "^14.2.0",
|
|
40
40
|
"@angular/router": "^14.2.0",
|
|
41
|
-
"@skyux/core": "7.0.0-beta.
|
|
42
|
-
"@skyux/i18n": "7.0.0-beta.
|
|
43
|
-
"@skyux/indicators": "7.0.0-beta.
|
|
44
|
-
"@skyux/router": "7.0.0-beta.
|
|
45
|
-
"@skyux/theme": "7.0.0-beta.
|
|
41
|
+
"@skyux/core": "7.0.0-beta.4",
|
|
42
|
+
"@skyux/i18n": "7.0.0-beta.4",
|
|
43
|
+
"@skyux/indicators": "7.0.0-beta.4",
|
|
44
|
+
"@skyux/router": "7.0.0-beta.4",
|
|
45
|
+
"@skyux/theme": "7.0.0-beta.4"
|
|
46
46
|
},
|
|
47
47
|
"dependencies": {
|
|
48
48
|
"tslib": "^2.3.1"
|