lucide-angular 0.254.0 → 0.255.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/arrows-up-from-line.mjs +15 -0
- package/esm2020/icons/container.mjs +21 -0
- package/esm2020/icons/lucide-icons.mjs +3 -1
- package/esm2020/src/icons/aliases.mjs +7 -1
- package/esm2020/src/icons/icons/arrows-up-from-line.mjs +15 -0
- package/esm2020/src/icons/icons/container.mjs +21 -0
- package/esm2020/src/icons/icons/lucide-icons.mjs +3 -1
- package/fesm2015/lucide-angular-src-icons.mjs +35 -1
- package/fesm2015/lucide-angular-src-icons.mjs.map +1 -1
- package/fesm2015/lucide-angular.mjs +35 -1
- package/fesm2015/lucide-angular.mjs.map +1 -1
- package/fesm2020/lucide-angular-src-icons.mjs +35 -1
- package/fesm2020/lucide-angular-src-icons.mjs.map +1 -1
- package/fesm2020/lucide-angular.mjs +35 -1
- package/fesm2020/lucide-angular.mjs.map +1 -1
- package/icons/arrows-up-from-line.d.ts +3 -0
- package/icons/container.d.ts +3 -0
- package/icons/lucide-icons.d.ts +2 -0
- package/package.json +1 -1
- package/src/icons/aliases.d.ts +4 -0
- package/src/icons/icons/arrows-up-from-line.d.ts +3 -0
- package/src/icons/icons/container.d.ts +3 -0
- package/src/icons/icons/lucide-icons.d.ts +2 -0
package/aliases.d.ts
CHANGED
|
@@ -224,6 +224,8 @@ export { default as ArrowUpZAIcon } from './icons/arrow-up-z-a';
|
|
|
224
224
|
export { default as LucideArrowUpZA } from './icons/arrow-up-z-a';
|
|
225
225
|
export { default as ArrowUpIcon } from './icons/arrow-up';
|
|
226
226
|
export { default as LucideArrowUp } from './icons/arrow-up';
|
|
227
|
+
export { default as ArrowsUpFromLineIcon } from './icons/arrows-up-from-line';
|
|
228
|
+
export { default as LucideArrowsUpFromLine } from './icons/arrows-up-from-line';
|
|
227
229
|
export { default as AsteriskIcon } from './icons/asterisk';
|
|
228
230
|
export { default as LucideAsterisk } from './icons/asterisk';
|
|
229
231
|
export { default as AtSignIcon } from './icons/at-sign';
|
|
@@ -684,6 +686,8 @@ export { default as Contact2Icon } from './icons/contact-2';
|
|
|
684
686
|
export { default as LucideContact2 } from './icons/contact-2';
|
|
685
687
|
export { default as ContactIcon } from './icons/contact';
|
|
686
688
|
export { default as LucideContact } from './icons/contact';
|
|
689
|
+
export { default as ContainerIcon } from './icons/container';
|
|
690
|
+
export { default as LucideContainer } from './icons/container';
|
|
687
691
|
export { default as ContrastIcon } from './icons/contrast';
|
|
688
692
|
export { default as LucideContrast } from './icons/contrast';
|
|
689
693
|
export { default as CookieIcon } from './icons/cookie';
|