lucide-angular 0.412.0 → 0.413.0
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/aliases.d.ts +2 -0
- package/esm2020/aliases.mjs +4 -1
- package/esm2020/icons/dam.mjs +28 -0
- package/esm2020/icons/dog.mjs +8 -15
- package/esm2020/icons/key-square.mjs +11 -5
- package/esm2020/icons/lucide-icons.mjs +2 -1
- package/esm2020/lib/lucide-angular.component.mjs +21 -18
- package/esm2020/src/icons/aliases.mjs +4 -1
- package/esm2020/src/icons/icons/dam.mjs +28 -0
- package/esm2020/src/icons/icons/dog.mjs +8 -15
- package/esm2020/src/icons/icons/key-square.mjs +11 -5
- package/esm2020/src/icons/icons/lucide-icons.mjs +2 -1
- package/esm2020/src/icons/lib/lucide-angular.component.mjs +21 -18
- package/fesm2015/lucide-angular-src-icons.mjs +67 -37
- package/fesm2015/lucide-angular-src-icons.mjs.map +1 -1
- package/fesm2015/lucide-angular.mjs +67 -37
- package/fesm2015/lucide-angular.mjs.map +1 -1
- package/fesm2020/lucide-angular-src-icons.mjs +66 -36
- package/fesm2020/lucide-angular-src-icons.mjs.map +1 -1
- package/fesm2020/lucide-angular.mjs +66 -36
- package/fesm2020/lucide-angular.mjs.map +1 -1
- package/icons/dam.d.ts +14 -0
- package/icons/dog.d.ts +1 -1
- package/icons/key-square.d.ts +1 -1
- package/icons/lucide-icons.d.ts +1 -0
- package/lib/lucide-angular.component.d.ts +3 -2
- package/package.json +1 -1
- package/src/icons/aliases.d.ts +2 -0
- package/src/icons/icons/dam.d.ts +14 -0
- package/src/icons/icons/dog.d.ts +1 -1
- package/src/icons/icons/key-square.d.ts +1 -1
- package/src/icons/icons/lucide-icons.d.ts +1 -0
- package/src/icons/lib/lucide-angular.component.d.ts +3 -2
package/icons/dam.d.ts
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { LucideIconData } from './types';
|
|
2
|
+
/**
|
|
3
|
+
* @component @name Dam
|
|
4
|
+
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
5
|
+
*
|
|
6
|
+
* @preview  - https://lucide.dev/icons/dam
|
|
7
|
+
* @see https://lucide.dev/guide/packages/lucide-vue-next - Documentation
|
|
8
|
+
*
|
|
9
|
+
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
|
10
|
+
* @returns {FunctionalComponent} Vue component
|
|
11
|
+
*
|
|
12
|
+
*/
|
|
13
|
+
declare const Dam: LucideIconData;
|
|
14
|
+
export default Dam;
|
package/icons/dog.d.ts
CHANGED
|
@@ -3,7 +3,7 @@ import { LucideIconData } from './types';
|
|
|
3
3
|
* @component @name Dog
|
|
4
4
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
5
5
|
*
|
|
6
|
-
* @preview  - https://lucide.dev/icons/dog
|
|
7
7
|
* @see https://lucide.dev/guide/packages/lucide-vue-next - Documentation
|
|
8
8
|
*
|
|
9
9
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
package/icons/key-square.d.ts
CHANGED
|
@@ -3,7 +3,7 @@ import { LucideIconData } from './types';
|
|
|
3
3
|
* @component @name KeySquare
|
|
4
4
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
5
5
|
*
|
|
6
|
-
* @preview  - https://lucide.dev/icons/key-square
|
|
7
7
|
* @see https://lucide.dev/guide/packages/lucide-vue-next - Documentation
|
|
8
8
|
*
|
|
9
9
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
package/icons/lucide-icons.d.ts
CHANGED
|
@@ -445,6 +445,7 @@ export { default as Cuboid } from './cuboid';
|
|
|
445
445
|
export { default as CupSoda } from './cup-soda';
|
|
446
446
|
export { default as Currency } from './currency';
|
|
447
447
|
export { default as Cylinder } from './cylinder';
|
|
448
|
+
export { default as Dam } from './dam';
|
|
448
449
|
export { default as DatabaseBackup } from './database-backup';
|
|
449
450
|
export { default as DatabaseZap } from './database-zap';
|
|
450
451
|
export { default as Database } from './database';
|
|
@@ -14,6 +14,7 @@ declare type LucideAngularComponentChanges = {
|
|
|
14
14
|
size?: TypedChange<number>;
|
|
15
15
|
strokeWidth?: TypedChange<number>;
|
|
16
16
|
absoluteStrokeWidth?: TypedChange<boolean>;
|
|
17
|
+
class: TypedChange<string>;
|
|
17
18
|
};
|
|
18
19
|
export declare function formatFixed(number: number, decimals?: number): string;
|
|
19
20
|
export declare class LucideAngularComponent implements OnChanges {
|
|
@@ -24,11 +25,11 @@ export declare class LucideAngularComponent implements OnChanges {
|
|
|
24
25
|
private iconConfig;
|
|
25
26
|
class?: string;
|
|
26
27
|
name?: string | LucideIconData;
|
|
28
|
+
img?: LucideIconData;
|
|
27
29
|
color?: string;
|
|
28
30
|
absoluteStrokeWidth: boolean;
|
|
29
31
|
defaultSize: number;
|
|
30
32
|
constructor(elem: ElementRef, renderer: Renderer2, changeDetector: ChangeDetectorRef, iconProviders: LucideIconProviderInterface[], iconConfig: LucideIconConfig);
|
|
31
|
-
set img(img: LucideIconData);
|
|
32
33
|
_size?: number;
|
|
33
34
|
get size(): number;
|
|
34
35
|
set size(value: string | number | undefined);
|
|
@@ -42,6 +43,6 @@ export declare class LucideAngularComponent implements OnChanges {
|
|
|
42
43
|
private getIcon;
|
|
43
44
|
private createElement;
|
|
44
45
|
static ɵfac: i0.ɵɵFactoryDeclaration<LucideAngularComponent, never>;
|
|
45
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<LucideAngularComponent, "lucide-angular, lucide-icon, i-lucide, span-lucide", never, { "class": "class"; "name": "name"; "
|
|
46
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LucideAngularComponent, "lucide-angular, lucide-icon, i-lucide, span-lucide", never, { "class": "class"; "name": "name"; "img": "img"; "color": "color"; "absoluteStrokeWidth": "absoluteStrokeWidth"; "size": "size"; "strokeWidth": "strokeWidth"; }, {}, never, ["*"]>;
|
|
46
47
|
}
|
|
47
48
|
export {};
|
package/package.json
CHANGED
package/src/icons/aliases.d.ts
CHANGED
|
@@ -774,6 +774,8 @@ export { default as CurrencyIcon } from './icons/currency';
|
|
|
774
774
|
export { default as LucideCurrency } from './icons/currency';
|
|
775
775
|
export { default as CylinderIcon } from './icons/cylinder';
|
|
776
776
|
export { default as LucideCylinder } from './icons/cylinder';
|
|
777
|
+
export { default as DamIcon } from './icons/dam';
|
|
778
|
+
export { default as LucideDam } from './icons/dam';
|
|
777
779
|
export { default as DatabaseBackupIcon } from './icons/database-backup';
|
|
778
780
|
export { default as LucideDatabaseBackup } from './icons/database-backup';
|
|
779
781
|
export { default as DatabaseZapIcon } from './icons/database-zap';
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { LucideIconData } from './types';
|
|
2
|
+
/**
|
|
3
|
+
* @component @name Dam
|
|
4
|
+
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
5
|
+
*
|
|
6
|
+
* @preview  - https://lucide.dev/icons/dam
|
|
7
|
+
* @see https://lucide.dev/guide/packages/lucide-vue-next - Documentation
|
|
8
|
+
*
|
|
9
|
+
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
|
10
|
+
* @returns {FunctionalComponent} Vue component
|
|
11
|
+
*
|
|
12
|
+
*/
|
|
13
|
+
declare const Dam: LucideIconData;
|
|
14
|
+
export default Dam;
|
package/src/icons/icons/dog.d.ts
CHANGED
|
@@ -3,7 +3,7 @@ import { LucideIconData } from './types';
|
|
|
3
3
|
* @component @name Dog
|
|
4
4
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
5
5
|
*
|
|
6
|
-
* @preview  - https://lucide.dev/icons/dog
|
|
7
7
|
* @see https://lucide.dev/guide/packages/lucide-vue-next - Documentation
|
|
8
8
|
*
|
|
9
9
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
|
@@ -3,7 +3,7 @@ import { LucideIconData } from './types';
|
|
|
3
3
|
* @component @name KeySquare
|
|
4
4
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
5
5
|
*
|
|
6
|
-
* @preview  - https://lucide.dev/icons/key-square
|
|
7
7
|
* @see https://lucide.dev/guide/packages/lucide-vue-next - Documentation
|
|
8
8
|
*
|
|
9
9
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
|
@@ -445,6 +445,7 @@ export { default as Cuboid } from './cuboid';
|
|
|
445
445
|
export { default as CupSoda } from './cup-soda';
|
|
446
446
|
export { default as Currency } from './currency';
|
|
447
447
|
export { default as Cylinder } from './cylinder';
|
|
448
|
+
export { default as Dam } from './dam';
|
|
448
449
|
export { default as DatabaseBackup } from './database-backup';
|
|
449
450
|
export { default as DatabaseZap } from './database-zap';
|
|
450
451
|
export { default as Database } from './database';
|
|
@@ -14,6 +14,7 @@ declare type LucideAngularComponentChanges = {
|
|
|
14
14
|
size?: TypedChange<number>;
|
|
15
15
|
strokeWidth?: TypedChange<number>;
|
|
16
16
|
absoluteStrokeWidth?: TypedChange<boolean>;
|
|
17
|
+
class: TypedChange<string>;
|
|
17
18
|
};
|
|
18
19
|
export declare function formatFixed(number: number, decimals?: number): string;
|
|
19
20
|
export declare class LucideAngularComponent implements OnChanges {
|
|
@@ -24,11 +25,11 @@ export declare class LucideAngularComponent implements OnChanges {
|
|
|
24
25
|
private iconConfig;
|
|
25
26
|
class?: string;
|
|
26
27
|
name?: string | LucideIconData;
|
|
28
|
+
img?: LucideIconData;
|
|
27
29
|
color?: string;
|
|
28
30
|
absoluteStrokeWidth: boolean;
|
|
29
31
|
defaultSize: number;
|
|
30
32
|
constructor(elem: ElementRef, renderer: Renderer2, changeDetector: ChangeDetectorRef, iconProviders: LucideIconProviderInterface[], iconConfig: LucideIconConfig);
|
|
31
|
-
set img(img: LucideIconData);
|
|
32
33
|
_size?: number;
|
|
33
34
|
get size(): number;
|
|
34
35
|
set size(value: string | number | undefined);
|
|
@@ -42,6 +43,6 @@ export declare class LucideAngularComponent implements OnChanges {
|
|
|
42
43
|
private getIcon;
|
|
43
44
|
private createElement;
|
|
44
45
|
static ɵfac: i0.ɵɵFactoryDeclaration<LucideAngularComponent, never>;
|
|
45
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<LucideAngularComponent, "lucide-angular, lucide-icon, i-lucide, span-lucide", never, { "class": "class"; "name": "name"; "
|
|
46
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LucideAngularComponent, "lucide-angular, lucide-icon, i-lucide, span-lucide", never, { "class": "class"; "name": "name"; "img": "img"; "color": "color"; "absoluteStrokeWidth": "absoluteStrokeWidth"; "size": "size"; "strokeWidth": "strokeWidth"; }, {}, never, ["*"]>;
|
|
46
47
|
}
|
|
47
48
|
export {};
|