@ecodev/natural 55.3.0 → 55.4.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.
@@ -11,6 +11,7 @@ export declare class NaturalAvatarComponent implements OnChanges {
11
11
  initials?: string | null;
12
12
  gravatar?: string | null;
13
13
  size: number;
14
+ decorated: boolean;
14
15
  textSizeRatio: number;
15
16
  bgColor: string | undefined;
16
17
  fgColor: string;
@@ -48,6 +49,6 @@ export declare class NaturalAvatarComponent implements OnChanges {
48
49
  */
49
50
  private getImageStyle;
50
51
  static ɵfac: i0.ɵɵFactoryDeclaration<NaturalAvatarComponent, never>;
51
- static ɵcmp: i0.ɵɵComponentDeclaration<NaturalAvatarComponent, "natural-avatar", never, { "image": { "alias": "image"; "required": false; }; "initials": { "alias": "initials"; "required": false; }; "gravatar": { "alias": "gravatar"; "required": false; }; "size": { "alias": "size"; "required": false; }; "textSizeRatio": { "alias": "textSizeRatio"; "required": false; }; "bgColor": { "alias": "bgColor"; "required": false; }; "fgColor": { "alias": "fgColor"; "required": false; }; "borderRadius": { "alias": "borderRadius"; "required": false; }; "textMaximumLength": { "alias": "textMaximumLength"; "required": false; }; }, {}, never, never, true, never>;
52
+ static ɵcmp: i0.ɵɵComponentDeclaration<NaturalAvatarComponent, "natural-avatar", never, { "image": { "alias": "image"; "required": false; }; "initials": { "alias": "initials"; "required": false; }; "gravatar": { "alias": "gravatar"; "required": false; }; "size": { "alias": "size"; "required": false; }; "decorated": { "alias": "decorated"; "required": false; }; "textSizeRatio": { "alias": "textSizeRatio"; "required": false; }; "bgColor": { "alias": "bgColor"; "required": false; }; "fgColor": { "alias": "fgColor"; "required": false; }; "borderRadius": { "alias": "borderRadius"; "required": false; }; "textMaximumLength": { "alias": "textMaximumLength"; "required": false; }; }, {}, never, never, true, never>;
52
53
  }
53
54
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ecodev/natural",
3
- "version": "55.3.0",
3
+ "version": "55.4.0",
4
4
  "license": "MIT",
5
5
  "repository": "github:Ecodev/natural",
6
6
  "sideEffects": false,
@@ -45,6 +45,11 @@
45
45
  .mat-mdc-dialog-container .mdc-dialog__content {
46
46
  color: mat.get-color-from-palette(map.get($theme, foreground), base, 0.87);
47
47
  }
48
+
49
+ .natural-elevation {
50
+ box-shadow: inset 0 1px rgba(255, 255, 255, 0.3), 0 2px 1px -1px rgba(0, 0, 0, 0.2),
51
+ 0 1px 1px 0 rgba(0, 0, 0, 0.14), 0 1px 3px 0 rgba(0, 0, 0, 0.12);
52
+ }
48
53
  }
49
54
 
50
55
  $defaultConfig: mat.define-typography-config();