@ohayojp.com/components
Version:
Common business components of ohayojp.
21 lines (20 loc) • 735 B
TypeScript
import { AfterViewInit, ChangeDetectorRef, OnChanges } from '@angular/core';
import { NumberInput } from '@ohayojp.com/util';
import { AvatarListItemComponent } from './avatar-list-item.component';
export declare class AvatarListComponent implements AfterViewInit, OnChanges {
private cdr;
static ngAcceptInputType_maxLength: NumberInput;
private inited;
private _items;
items: AvatarListItemComponent[];
exceedCount: number;
cls: string;
avatarSize: string;
set size(value: 'large' | 'small' | 'mini' | 'default');
maxLength: number;
excessItemsStyle: {};
constructor(cdr: ChangeDetectorRef);
private gen;
ngAfterViewInit(): void;
ngOnChanges(): void;
}