lucide-angular 0.411.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 +4 -0
- package/esm2020/aliases.mjs +7 -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/letter-text.mjs +20 -0
- package/esm2020/icons/lucide-icons.mjs +3 -1
- package/esm2020/lib/lucide-angular.component.mjs +21 -18
- package/esm2020/src/icons/aliases.mjs +7 -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/letter-text.mjs +20 -0
- package/esm2020/src/icons/icons/lucide-icons.mjs +3 -1
- package/esm2020/src/icons/lib/lucide-angular.component.mjs +21 -18
- package/fesm2015/lucide-angular-src-icons.mjs +87 -37
- package/fesm2015/lucide-angular-src-icons.mjs.map +1 -1
- package/fesm2015/lucide-angular.mjs +87 -37
- package/fesm2015/lucide-angular.mjs.map +1 -1
- package/fesm2020/lucide-angular-src-icons.mjs +86 -36
- package/fesm2020/lucide-angular-src-icons.mjs.map +1 -1
- package/fesm2020/lucide-angular.mjs +86 -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/letter-text.d.ts +14 -0
- package/icons/lucide-icons.d.ts +2 -0
- package/lib/lucide-angular.component.d.ts +3 -2
- package/package.json +1 -1
- package/src/icons/aliases.d.ts +4 -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/letter-text.d.ts +14 -0
- package/src/icons/icons/lucide-icons.d.ts +2 -0
- package/src/icons/lib/lucide-angular.component.d.ts +3 -2
package/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';
|
|
@@ -1414,6 +1416,8 @@ export { default as LeafyGreenIcon } from './icons/leafy-green';
|
|
|
1414
1416
|
export { default as LucideLeafyGreen } from './icons/leafy-green';
|
|
1415
1417
|
export { default as LecternIcon } from './icons/lectern';
|
|
1416
1418
|
export { default as LucideLectern } from './icons/lectern';
|
|
1419
|
+
export { default as LetterTextIcon } from './icons/letter-text';
|
|
1420
|
+
export { default as LucideLetterText } from './icons/letter-text';
|
|
1417
1421
|
export { default as LibraryBigIcon } from './icons/library-big';
|
|
1418
1422
|
export { default as LucideLibraryBig } from './icons/library-big';
|
|
1419
1423
|
export { default as LibraryIcon } from './icons/library';
|