@coreui/icons-angular
Advanced tools
Comparing version 5.2.22 to 5.2.23
@@ -6,9 +6,6 @@ import * as i0 from "@angular/core"; | ||
export declare class IconSetService { | ||
get iconNames(): { | ||
[key: string]: string; | ||
}; | ||
private _iconNames; | ||
#private; | ||
get iconNames(): Record<string, string>; | ||
get icons(): IIconSet; | ||
set icons(iconSet: IIconSet); | ||
private _icons; | ||
getIcon(name: string): string[]; | ||
@@ -15,0 +12,0 @@ static ɵfac: i0.ɵɵFactoryDeclaration<IconSetService, never>; |
@@ -1,35 +0,27 @@ | ||
import { AfterViewInit, ElementRef } from '@angular/core'; | ||
import { IconSize, IIcon } from './icon.interface'; | ||
import { ElementRef } from '@angular/core'; | ||
import { IIcon, NgCssClass } from './icon.interface'; | ||
import * as i0 from "@angular/core"; | ||
export declare class IconComponent implements IIcon, AfterViewInit { | ||
export declare class IconComponent implements IIcon { | ||
#private; | ||
constructor(); | ||
set content(value: string | string[] | any[]); | ||
attributes: any; | ||
customClasses?: string | string[] | Set<string> | { | ||
[klass: string]: any; | ||
}; | ||
size: IconSize; | ||
title?: string; | ||
use: string; | ||
height?: string; | ||
width?: string; | ||
set name(value: string); | ||
get name(): string; | ||
set viewBox(viewBox: string); | ||
get viewBox(): string; | ||
private _viewBox; | ||
svgElementRef: ElementRef; | ||
ngAfterViewInit(): void; | ||
readonly content: import("@angular/core").InputSignal<string | any[] | string[] | undefined>; | ||
readonly attributes: import("@angular/core").InputSignal<Record<string, any>>; | ||
readonly customClasses: import("@angular/core").InputSignal<NgCssClass | undefined>; | ||
readonly size: import("@angular/core").InputSignal<string>; | ||
readonly title: import("@angular/core").InputSignal<string | undefined>; | ||
readonly use: import("@angular/core").InputSignal<string>; | ||
readonly height: import("@angular/core").InputSignal<string | undefined>; | ||
readonly width: import("@angular/core").InputSignal<string | undefined>; | ||
readonly name: import("@angular/core").InputSignalWithTransform<string, string>; | ||
readonly viewBoxInput: import("@angular/core").InputSignal<string | undefined>; | ||
readonly svgElementRef: import("@angular/core").Signal<ElementRef<any> | undefined>; | ||
readonly svgElementEffect: import("@angular/core").EffectRef; | ||
readonly viewBox: import("@angular/core").Signal<string>; | ||
readonly innerHtml: import("@angular/core").Signal<import("@angular/platform-browser").SafeHtml>; | ||
get titleCode(): string; | ||
readonly code: import("@angular/core").Signal<string | any[]>; | ||
readonly scale: import("@angular/core").Signal<string>; | ||
get computedSize(): Exclude<IconSize, 'custom'> | undefined; | ||
get computedClasses(): string | string[] | Set<string> | { | ||
[klass: string]: any; | ||
}; | ||
readonly computedSize: import("@angular/core").Signal<string>; | ||
readonly computedClasses: import("@angular/core").Signal<NgCssClass>; | ||
static ɵfac: i0.ɵɵFactoryDeclaration<IconComponent, never>; | ||
static ɵcmp: i0.ɵɵComponentDeclaration<IconComponent, "c-icon", ["cIconComponent"], { "content": { "alias": "content"; "required": false; }; "attributes": { "alias": "attributes"; "required": false; }; "customClasses": { "alias": "customClasses"; "required": false; }; "size": { "alias": "size"; "required": false; }; "title": { "alias": "title"; "required": false; }; "use": { "alias": "use"; "required": false; }; "height": { "alias": "height"; "required": false; }; "width": { "alias": "width"; "required": false; }; "name": { "alias": "name"; "required": false; }; "viewBox": { "alias": "viewBox"; "required": false; }; }, {}, never, never, true, never>; | ||
static ngAcceptInputType_name: string; | ||
static ɵcmp: i0.ɵɵComponentDeclaration<IconComponent, "c-icon", ["cIconComponent"], { "content": { "alias": "content"; "required": false; "isSignal": true; }; "attributes": { "alias": "attributes"; "required": false; "isSignal": true; }; "customClasses": { "alias": "customClasses"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "title": { "alias": "title"; "required": false; "isSignal": true; }; "use": { "alias": "use"; "required": false; "isSignal": true; }; "height": { "alias": "height"; "required": false; "isSignal": true; }; "width": { "alias": "width"; "required": false; "isSignal": true; }; "name": { "alias": "name"; "required": false; "isSignal": true; }; "viewBoxInput": { "alias": "viewBox"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>; | ||
} |
@@ -1,37 +0,24 @@ | ||
import { IconSize, IIcon } from './icon.interface'; | ||
import { IIcon, IPointerEvents, NgCssClass } from './icon.interface'; | ||
import * as i0 from "@angular/core"; | ||
export declare class IconDirective implements IIcon { | ||
#private; | ||
constructor(); | ||
set content(value: string | string[] | any[]); | ||
customClasses?: string | string[] | Set<string> | { | ||
[klass: string]: any; | ||
}; | ||
size: IconSize; | ||
title?: string; | ||
height?: string; | ||
width?: string; | ||
set name(value: string); | ||
get name(): string; | ||
set viewBox(viewBox: string); | ||
get viewBox(): string; | ||
private _viewBox; | ||
ariaHidden: boolean; | ||
xmlns: string; | ||
pointerEvents: string; | ||
role: string; | ||
get hostClasses(): string | string[] | Set<string> | { | ||
[klass: string]: any; | ||
}; | ||
readonly content: import("@angular/core").InputSignal<string | any[] | string[] | undefined>; | ||
readonly customClasses: import("@angular/core").InputSignal<NgCssClass | undefined>; | ||
readonly size: import("@angular/core").InputSignal<string>; | ||
readonly title: import("@angular/core").InputSignal<string | undefined>; | ||
readonly height: import("@angular/core").InputSignal<string | undefined>; | ||
readonly width: import("@angular/core").InputSignal<string | undefined>; | ||
readonly name: import("@angular/core").InputSignalWithTransform<string, string>; | ||
readonly viewBoxInput: import("@angular/core").InputSignal<string | undefined>; | ||
readonly xmlns: import("@angular/core").InputSignal<string>; | ||
readonly pointerEvents: import("@angular/core").InputSignal<IPointerEvents>; | ||
readonly role: import("@angular/core").InputSignal<string>; | ||
readonly hostClasses: import("@angular/core").Signal<NgCssClass>; | ||
readonly viewBox: import("@angular/core").Signal<string>; | ||
readonly innerHtml: import("@angular/core").Signal<import("@angular/platform-browser").SafeHtml>; | ||
get titleCode(): string; | ||
readonly code: import("@angular/core").Signal<string | any[]>; | ||
readonly scale: import("@angular/core").Signal<string>; | ||
get computedSize(): Exclude<IconSize, 'custom'> | undefined; | ||
get computedClasses(): string | string[] | Set<string> | { | ||
[klass: string]: any; | ||
}; | ||
readonly computedSize: import("@angular/core").Signal<string>; | ||
static ɵfac: i0.ɵɵFactoryDeclaration<IconDirective, never>; | ||
static ɵdir: i0.ɵɵDirectiveDeclaration<IconDirective, "svg[cIcon]", ["cIcon"], { "content": { "alias": "cIcon"; "required": false; }; "customClasses": { "alias": "customClasses"; "required": false; }; "size": { "alias": "size"; "required": false; }; "title": { "alias": "title"; "required": false; }; "height": { "alias": "height"; "required": false; }; "width": { "alias": "width"; "required": false; }; "name": { "alias": "name"; "required": false; }; "viewBox": { "alias": "viewBox"; "required": false; }; "xmlns": { "alias": "xmlns"; "required": false; }; "pointerEvents": { "alias": "pointer-events"; "required": false; }; "role": { "alias": "role"; "required": false; }; }, {}, never, never, true, never>; | ||
static ngAcceptInputType_name: string; | ||
static ɵdir: i0.ɵɵDirectiveDeclaration<IconDirective, "svg[cIcon]", ["cIcon"], { "content": { "alias": "cIcon"; "required": false; "isSignal": true; }; "customClasses": { "alias": "customClasses"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "title": { "alias": "title"; "required": false; "isSignal": true; }; "height": { "alias": "height"; "required": false; "isSignal": true; }; "width": { "alias": "width"; "required": false; "isSignal": true; }; "name": { "alias": "name"; "required": false; "isSignal": true; }; "viewBoxInput": { "alias": "viewBox"; "required": false; "isSignal": true; }; "xmlns": { "alias": "xmlns"; "required": false; "isSignal": true; }; "pointerEvents": { "alias": "pointer-events"; "required": false; "isSignal": true; }; "role": { "alias": "role"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>; | ||
} |
@@ -0,15 +1,18 @@ | ||
import { InputSignal, InputSignalWithTransform } from '@angular/core'; | ||
export interface IIcon { | ||
content?: string | string[] | any[]; | ||
customClasses?: string | string[] | Set<string> | { | ||
[klass: string]: any; | ||
}; | ||
height?: string; | ||
name?: string; | ||
pointerEvents?: string; | ||
size?: IconSize; | ||
title?: string; | ||
viewBox?: string; | ||
width?: string; | ||
xmlns?: string; | ||
content?: InputSignal<string | string[] | any[] | undefined>; | ||
customClasses?: InputSignal<NgCssClass | undefined>; | ||
height?: InputSignal<string | undefined>; | ||
name?: InputSignalWithTransform<string, string>; | ||
pointerEvents?: InputSignal<IPointerEvents>; | ||
size?: InputSignal<IconSize>; | ||
title?: InputSignal<string | undefined>; | ||
viewBoxInput?: InputSignal<string | undefined>; | ||
width: InputSignal<string | undefined>; | ||
xmlns?: InputSignal<string>; | ||
} | ||
export type IconSize = 'custom' | 'custom-size' | 'sm' | 'lg' | 'xl' | 'xxl' | '3xl' | '4xl' | '5xl' | '6xl' | '7xl' | '8xl' | '9xl' | string; | ||
export type IPointerEvents = 'auto' | 'bounding-box' | 'visiblePainted' | 'visibleFill' | 'visibleStroke' | 'visible' | 'painted' | 'fill' | 'stroke' | 'all' | 'none'; | ||
export type NgCssClass = string | string[] | Set<string> | { | ||
[klass: string]: any; | ||
}; |
@@ -1,11 +0,6 @@ | ||
import { ElementRef, OnInit, Renderer2 } from '@angular/core'; | ||
import * as i0 from "@angular/core"; | ||
export declare class HtmlAttributesDirective implements OnInit { | ||
private renderer; | ||
private el; | ||
cHtmlAttr?: { | ||
[key: string]: any; | ||
}; | ||
constructor(renderer: Renderer2, el: ElementRef); | ||
ngOnInit(): void; | ||
export declare class HtmlAttributesDirective { | ||
#private; | ||
readonly cHtmlAttr: import("@angular/core").InputSignal<Record<string, any> | undefined>; | ||
readonly attrEffect: import("@angular/core").EffectRef; | ||
private setStyle; | ||
@@ -15,3 +10,3 @@ private addClass; | ||
static ɵfac: i0.ɵɵFactoryDeclaration<HtmlAttributesDirective, never>; | ||
static ɵdir: i0.ɵɵDirectiveDeclaration<HtmlAttributesDirective, "[cHtmlAttr]", ["cHtmlAttr"], { "cHtmlAttr": { "alias": "cHtmlAttr"; "required": false; }; }, {}, never, never, true, never>; | ||
static ɵdir: i0.ɵɵDirectiveDeclaration<HtmlAttributesDirective, "[cHtmlAttr]", ["cHtmlAttr"], { "cHtmlAttr": { "alias": "cHtmlAttr"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>; | ||
} |
{ | ||
"name": "@coreui/icons-angular", | ||
"version": "5.2.22", | ||
"version": "5.2.23", | ||
"description": "CoreUI Icons Angular component and service", | ||
@@ -5,0 +5,0 @@ "copyright": "Copyright 2024 creativeLabs Łukasz Holeczek", |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
136650
984