@brickclay-org/ui 0.1.19 → 0.1.21
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/brickclay-org-ui.mjs +50 -10
- package/fesm2022/brickclay-org-ui.mjs.map +1 -1
- package/index.d.ts +9 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1689,6 +1689,8 @@ declare class BKTooltipDirective implements OnInit, OnChanges, OnDestroy {
|
|
|
1689
1689
|
appendContent(): void;
|
|
1690
1690
|
onMouseEnter(): void;
|
|
1691
1691
|
onMouseLeave(): void;
|
|
1692
|
+
private hideTooltip;
|
|
1693
|
+
onInteract(): void;
|
|
1692
1694
|
onWindowChange(): void;
|
|
1693
1695
|
private isTooltipContentEmpty;
|
|
1694
1696
|
private createTooltip;
|
|
@@ -1974,6 +1976,10 @@ declare class BkAvatar implements OnChanges, ControlValueAccessor {
|
|
|
1974
1976
|
src: string | null;
|
|
1975
1977
|
alt: string;
|
|
1976
1978
|
name: string;
|
|
1979
|
+
initialsOverride: string;
|
|
1980
|
+
tooltipContent: string | string[] | null;
|
|
1981
|
+
bgColor: string | null;
|
|
1982
|
+
textColor: string | null;
|
|
1977
1983
|
size: AvatarSize;
|
|
1978
1984
|
variant: AvatarVariant;
|
|
1979
1985
|
fallback: AvatarFallback;
|
|
@@ -1999,10 +2005,12 @@ declare class BkAvatar implements OnChanges, ControlValueAccessor {
|
|
|
1999
2005
|
get showInitials(): boolean;
|
|
2000
2006
|
get showIcon(): boolean;
|
|
2001
2007
|
get containerClasses(): string;
|
|
2008
|
+
get containerStyles(): Record<string, string> | null;
|
|
2009
|
+
get resolvedTooltip(): string | string[];
|
|
2002
2010
|
get dotClasses(): string;
|
|
2003
2011
|
private getInitials;
|
|
2004
2012
|
static ɵfac: i0.ɵɵFactoryDeclaration<BkAvatar, never>;
|
|
2005
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<BkAvatar, "bk-avatar", never, { "src": { "alias": "src"; "required": false; }; "alt": { "alias": "alt"; "required": false; }; "name": { "alias": "name"; "required": false; }; "size": { "alias": "size"; "required": false; }; "variant": { "alias": "variant"; "required": false; }; "fallback": { "alias": "fallback"; "required": false; }; "dot": { "alias": "dot"; "required": false; }; "dotPosition": { "alias": "dotPosition"; "required": false; }; }, { "imageLoadError": "imageLoadError"; }, never, never, true, never>;
|
|
2013
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BkAvatar, "bk-avatar", never, { "src": { "alias": "src"; "required": false; }; "alt": { "alias": "alt"; "required": false; }; "name": { "alias": "name"; "required": false; }; "initialsOverride": { "alias": "initialsOverride"; "required": false; }; "tooltipContent": { "alias": "tooltipContent"; "required": false; }; "bgColor": { "alias": "bgColor"; "required": false; }; "textColor": { "alias": "textColor"; "required": false; }; "size": { "alias": "size"; "required": false; }; "variant": { "alias": "variant"; "required": false; }; "fallback": { "alias": "fallback"; "required": false; }; "dot": { "alias": "dot"; "required": false; }; "dotPosition": { "alias": "dotPosition"; "required": false; }; }, { "imageLoadError": "imageLoadError"; }, never, never, true, never>;
|
|
2006
2014
|
}
|
|
2007
2015
|
|
|
2008
2016
|
declare class ColumnFilterOption {
|