lucide-angular 0.276.0 → 0.278.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 +6 -0
- package/esm2020/aliases.mjs +10 -1
- package/esm2020/icons/bookmark-check.mjs +15 -0
- package/esm2020/icons/bookmark-x.mjs +16 -0
- package/esm2020/icons/lucide-icons.mjs +4 -1
- package/esm2020/icons/speech.mjs +19 -0
- package/esm2020/src/icons/aliases.mjs +10 -1
- package/esm2020/src/icons/icons/bookmark-check.mjs +15 -0
- package/esm2020/src/icons/icons/bookmark-x.mjs +16 -0
- package/esm2020/src/icons/icons/lucide-icons.mjs +4 -1
- package/esm2020/src/icons/icons/speech.mjs +19 -0
- package/fesm2015/lucide-angular-src-icons.mjs +48 -1
- package/fesm2015/lucide-angular-src-icons.mjs.map +1 -1
- package/fesm2015/lucide-angular.mjs +48 -1
- package/fesm2015/lucide-angular.mjs.map +1 -1
- package/fesm2020/lucide-angular-src-icons.mjs +48 -1
- package/fesm2020/lucide-angular-src-icons.mjs.map +1 -1
- package/fesm2020/lucide-angular.mjs +48 -1
- package/fesm2020/lucide-angular.mjs.map +1 -1
- package/icons/bookmark-check.d.ts +3 -0
- package/icons/bookmark-x.d.ts +3 -0
- package/icons/lucide-icons.d.ts +3 -0
- package/icons/speech.d.ts +3 -0
- package/package.json +1 -1
- package/src/icons/aliases.d.ts +6 -0
- package/src/icons/icons/bookmark-check.d.ts +3 -0
- package/src/icons/icons/bookmark-x.d.ts +3 -0
- package/src/icons/icons/lucide-icons.d.ts +3 -0
- package/src/icons/icons/speech.d.ts +3 -0
package/aliases.d.ts
CHANGED
|
@@ -372,10 +372,14 @@ export { default as BookXIcon } from './icons/book-x';
|
|
|
372
372
|
export { default as LucideBookX } from './icons/book-x';
|
|
373
373
|
export { default as BookIcon } from './icons/book';
|
|
374
374
|
export { default as LucideBook } from './icons/book';
|
|
375
|
+
export { default as BookmarkCheckIcon } from './icons/bookmark-check';
|
|
376
|
+
export { default as LucideBookmarkCheck } from './icons/bookmark-check';
|
|
375
377
|
export { default as BookmarkMinusIcon } from './icons/bookmark-minus';
|
|
376
378
|
export { default as LucideBookmarkMinus } from './icons/bookmark-minus';
|
|
377
379
|
export { default as BookmarkPlusIcon } from './icons/bookmark-plus';
|
|
378
380
|
export { default as LucideBookmarkPlus } from './icons/bookmark-plus';
|
|
381
|
+
export { default as BookmarkXIcon } from './icons/bookmark-x';
|
|
382
|
+
export { default as LucideBookmarkX } from './icons/bookmark-x';
|
|
379
383
|
export { default as BookmarkIcon } from './icons/bookmark';
|
|
380
384
|
export { default as LucideBookmark } from './icons/bookmark';
|
|
381
385
|
export { default as BoomBoxIcon } from './icons/boom-box';
|
|
@@ -2052,6 +2056,8 @@ export { default as SparkleIcon } from './icons/sparkle';
|
|
|
2052
2056
|
export { default as LucideSparkle } from './icons/sparkle';
|
|
2053
2057
|
export { default as SpeakerIcon } from './icons/speaker';
|
|
2054
2058
|
export { default as LucideSpeaker } from './icons/speaker';
|
|
2059
|
+
export { default as SpeechIcon } from './icons/speech';
|
|
2060
|
+
export { default as LucideSpeech } from './icons/speech';
|
|
2055
2061
|
export { default as SpellCheck2Icon } from './icons/spell-check-2';
|
|
2056
2062
|
export { default as LucideSpellCheck2 } from './icons/spell-check-2';
|
|
2057
2063
|
export { default as SpellCheckIcon } from './icons/spell-check';
|