@progress/kendo-angular-layout 7.0.0-next.202204060717 → 7.0.1-dev.202205020614

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.
@@ -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
- * * null
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
- * * null
80
- *
79
+ * * `none`
81
80
  */
82
81
  set fillMode(fillMode: AvatarFillMode);
83
82
  get fillMode(): AvatarFillMode;
@@ -5,4 +5,4 @@
5
5
  /**
6
6
  * Specifies the possible appearance fill styles of the аvatar ([see example]({% slug appearance_avatar %}#toc-fill)).
7
7
  */
8
- export declare type AvatarFillMode = 'solid' | 'outline';
8
+ export declare type AvatarFillMode = 'solid' | 'outline' | 'none';
@@ -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';
@@ -5,4 +5,4 @@
5
5
  /**
6
6
  * Specifies the possible sizes of the аvatar ([see example]({% slug appearance_avatar %}#toc-size)).
7
7
  */
8
- export declare type AvatarSize = 'small' | 'medium' | 'large';
8
+ export declare type AvatarSize = 'small' | 'medium' | 'large' | 'none';
@@ -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';