@progress/kendo-angular-layout 7.0.0-next.202204011204 → 7.0.0-next.202204080801
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/avatar/avatar.component.d.ts +4 -5
- package/avatar/models/fill.d.ts +1 -1
- package/avatar/models/rounded.d.ts +1 -1
- package/avatar/models/size.d.ts +1 -1
- package/avatar/models/theme-color.d.ts +1 -1
- package/bundles/kendo-angular-layout.umd.js +1 -1
- package/common/preventable-event.d.ts +28 -0
- package/esm2015/avatar/avatar.component.js +24 -17
- package/esm2015/common/preventable-event.js +34 -0
- package/esm2015/common/util.js +3 -3
- package/esm2015/main.js +1 -0
- package/esm2015/package-metadata.js +1 -1
- package/esm2015/panelbar/events/collapse-event.js +10 -0
- package/esm2015/panelbar/events/expand-event.js +10 -0
- package/esm2015/panelbar/events/select-event.js +10 -0
- package/esm2015/panelbar/events/state-change-event.js +9 -0
- package/esm2015/panelbar/events.js +8 -0
- package/esm2015/panelbar/panelbar-item.component.js +32 -2
- package/esm2015/panelbar/panelbar.component.js +145 -55
- package/fesm2015/kendo-angular-layout.js +270 -89
- package/main.d.ts +1 -0
- package/package.json +5 -5
- package/panelbar/events/collapse-event.d.ts +15 -0
- package/panelbar/events/expand-event.d.ts +15 -0
- package/panelbar/events/select-event.d.ts +15 -0
- package/panelbar/events/state-change-event.d.ts +14 -0
- package/panelbar/events.d.ts +8 -0
- package/panelbar/panelbar.component.d.ts +26 -3
|
@@ -33,7 +33,7 @@ export declare class AvatarComponent implements OnInit, AfterViewInit {
|
|
|
33
33
|
* * `small`
|
|
34
34
|
* * `medium` (Default)
|
|
35
35
|
* * `large`
|
|
36
|
-
*
|
|
36
|
+
* * `none`
|
|
37
37
|
*/
|
|
38
38
|
set size(size: AvatarSize);
|
|
39
39
|
get size(): AvatarSize;
|
|
@@ -46,8 +46,7 @@ export declare class AvatarComponent implements OnInit, AfterViewInit {
|
|
|
46
46
|
* * `medium`
|
|
47
47
|
* * `large`
|
|
48
48
|
* * `full` (Default)
|
|
49
|
-
* *
|
|
50
|
-
*
|
|
49
|
+
* * `none`
|
|
51
50
|
*/
|
|
52
51
|
set rounded(rounded: AvatarRounded);
|
|
53
52
|
get rounded(): AvatarRounded;
|
|
@@ -67,6 +66,7 @@ export declare class AvatarComponent implements OnInit, AfterViewInit {
|
|
|
67
66
|
* * `dark`— Applies coloring based on dark theme color.
|
|
68
67
|
* * `light`— Applies coloring based on light theme color.
|
|
69
68
|
* * `inverse`— Applies coloring based on inverted theme color.
|
|
69
|
+
* * `none`— Removes the styling associated with the theme color.
|
|
70
70
|
*/
|
|
71
71
|
set themeColor(themeColor: AvatarThemeColor);
|
|
72
72
|
get themeColor(): AvatarThemeColor;
|
|
@@ -76,8 +76,7 @@ export declare class AvatarComponent implements OnInit, AfterViewInit {
|
|
|
76
76
|
* The possible values are:
|
|
77
77
|
* * `solid` (Default)
|
|
78
78
|
* * `outline`
|
|
79
|
-
* *
|
|
80
|
-
*
|
|
79
|
+
* * `none`
|
|
81
80
|
*/
|
|
82
81
|
set fillMode(fillMode: AvatarFillMode);
|
|
83
82
|
get fillMode(): AvatarFillMode;
|
package/avatar/models/fill.d.ts
CHANGED
|
@@ -5,4 +5,4 @@
|
|
|
5
5
|
/**
|
|
6
6
|
* Specifies the possible rounded options of the аvatar ([see example]({% slug appearance_avatar %}#toc-rounded-corners)).
|
|
7
7
|
*/
|
|
8
|
-
export declare type AvatarRounded = 'small' | 'medium' | 'large' | 'full';
|
|
8
|
+
export declare type AvatarRounded = 'small' | 'medium' | 'large' | 'full' | 'none';
|
package/avatar/models/size.d.ts
CHANGED
|
@@ -5,4 +5,4 @@
|
|
|
5
5
|
/**
|
|
6
6
|
* Specifies the possible theme colors of the аvatar ([see example]({% slug appearance_avatar %}#toc-theme-color)).
|
|
7
7
|
*/
|
|
8
|
-
export declare type AvatarThemeColor = 'primary' | 'secondary' | 'tertiary' | 'base' | 'info' | 'success' | 'warning' | 'error' | 'dark' | 'light' | 'inverse';
|
|
8
|
+
export declare type AvatarThemeColor = 'primary' | 'secondary' | 'tertiary' | 'base' | 'info' | 'success' | 'warning' | 'error' | 'dark' | 'light' | 'inverse' | 'none';
|