@rlucan/ui 20.0.3 → 20.0.6
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/fesm2022/rlucan-ui.mjs +41 -5
- package/fesm2022/rlucan-ui.mjs.map +1 -1
- package/index.d.ts +7 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -545,10 +545,16 @@ declare class AvatarComponent {
|
|
|
545
545
|
}>;
|
|
546
546
|
srcOptions: any;
|
|
547
547
|
size: 'big' | 'bigger' | 'normal' | 'smaller' | 'small' | 'mini';
|
|
548
|
+
diameter: string | undefined;
|
|
549
|
+
private get styleDiameter();
|
|
550
|
+
get height(): string;
|
|
551
|
+
get width(): string;
|
|
552
|
+
get fontSize(): string;
|
|
553
|
+
get paddingBottom(): string;
|
|
548
554
|
get contrast(): string;
|
|
549
555
|
constructor();
|
|
550
556
|
static ɵfac: i0.ɵɵFactoryDeclaration<AvatarComponent, never>;
|
|
551
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AvatarComponent, "ui-avatar", never, { "user": { "alias": "user"; "required":
|
|
557
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AvatarComponent, "ui-avatar", never, { "user": { "alias": "user"; "required": true; }; "srcOptions": { "alias": "srcOptions"; "required": false; }; "size": { "alias": "size"; "required": false; }; "diameter": { "alias": "diameter"; "required": false; }; }, {}, never, never, false, never>;
|
|
552
558
|
}
|
|
553
559
|
|
|
554
560
|
declare class SubmitButtonComponent implements OnInit {
|