@litigiovirtual/ius-design-components 1.0.228 → 1.0.230

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.
@@ -0,0 +1,16 @@
1
+ import { EventEmitter } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export type AvatarBusinessSize = 'xs' | 'sm' | 'md' | 'lg' | 'xl' | 'xxl';
4
+ export type AvatarBusinessShape = 'circle' | 'square';
5
+ export declare class AvatarBusinessComponent {
6
+ imageUrl?: string;
7
+ label?: string;
8
+ size: AvatarBusinessSize;
9
+ shape: AvatarBusinessShape;
10
+ showEditButton: boolean;
11
+ fallbackIconName: string;
12
+ editClicked: EventEmitter<void>;
13
+ onEditClick(event: MouseEvent): void;
14
+ static ɵfac: i0.ɵɵFactoryDeclaration<AvatarBusinessComponent, never>;
15
+ static ɵcmp: i0.ɵɵComponentDeclaration<AvatarBusinessComponent, "ius-avatar-business", never, { "imageUrl": { "alias": "imageUrl"; "required": false; }; "label": { "alias": "label"; "required": false; }; "size": { "alias": "size"; "required": false; }; "shape": { "alias": "shape"; "required": false; }; "showEditButton": { "alias": "showEditButton"; "required": false; }; "fallbackIconName": { "alias": "fallbackIconName"; "required": false; }; }, { "editClicked": "editClicked"; }, never, never, true, never>;
16
+ }
@@ -0,0 +1 @@
1
+ export * from './avatar-business.component';
@@ -0,0 +1,23 @@
1
+ import { EventEmitter, OnChanges, SimpleChanges } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export type AvatarV2Size = 'xs' | 'sm' | 'md' | 'lg' | 'xl' | 'xxl';
4
+ export type AvatarV2Shape = 'circle' | 'square';
5
+ export declare class AvatarV2Component implements OnChanges {
6
+ imageUrl?: string;
7
+ name?: string;
8
+ size: AvatarV2Size;
9
+ shape: AvatarV2Shape;
10
+ showEditButton: boolean;
11
+ backgroundColor?: string;
12
+ fallbackIconName: string;
13
+ editClicked: EventEmitter<void>;
14
+ initials: string;
15
+ get containerStyle(): {
16
+ [key: string]: string;
17
+ };
18
+ ngOnChanges(changes: SimpleChanges): void;
19
+ onEditClick(event: MouseEvent): void;
20
+ private extractInitials;
21
+ static ɵfac: i0.ɵɵFactoryDeclaration<AvatarV2Component, never>;
22
+ static ɵcmp: i0.ɵɵComponentDeclaration<AvatarV2Component, "ius-avatar-v2", never, { "imageUrl": { "alias": "imageUrl"; "required": false; }; "name": { "alias": "name"; "required": false; }; "size": { "alias": "size"; "required": false; }; "shape": { "alias": "shape"; "required": false; }; "showEditButton": { "alias": "showEditButton"; "required": false; }; "backgroundColor": { "alias": "backgroundColor"; "required": false; }; "fallbackIconName": { "alias": "fallbackIconName"; "required": false; }; }, { "editClicked": "editClicked"; }, never, never, true, never>;
23
+ }
@@ -0,0 +1 @@
1
+ export * from './avatar-v2.component';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@litigiovirtual/ius-design-components",
3
- "version": "1.0.228",
3
+ "version": "1.0.230",
4
4
  "peerDependencies": {
5
5
  "@angular/cdk": ">=17.0.0 <20.0.0",
6
6
  "@angular/common": ">=17.0.0 <20.0.0",
package/public-api.d.ts CHANGED
@@ -96,5 +96,7 @@ export * from './lib/loading-component-dynamic';
96
96
  export * from './lib/page-not-found';
97
97
  export * from './lib/empty-list';
98
98
  export * from './lib/create-ticket';
99
+ export * from './lib/avatar-v2';
100
+ export * from './lib/avatar-business';
99
101
  export * from './lib/directives/popover.directive';
100
102
  export * from './lib/directives/infinite-scroll.directive';