lucide-angular 0.446.0 → 0.448.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 +7 -2
- package/esm2020/aliases.mjs +10 -4
- package/esm2020/icons/eye-closed.mjs +20 -0
- package/esm2020/icons/linkedin.mjs +2 -2
- package/esm2020/icons/lucide-icons.mjs +3 -2
- package/esm2020/{src/icons/icons/box-select.mjs → icons/square-dashed.mjs} +5 -5
- package/esm2020/src/icons/aliases.mjs +10 -4
- package/esm2020/src/icons/icons/eye-closed.mjs +20 -0
- package/esm2020/src/icons/icons/linkedin.mjs +2 -2
- package/esm2020/src/icons/icons/lucide-icons.mjs +3 -2
- package/esm2020/src/icons/icons/square-dashed.mjs +27 -0
- package/fesm2015/lucide-angular-src-icons.mjs +49 -29
- package/fesm2015/lucide-angular-src-icons.mjs.map +1 -1
- package/fesm2015/lucide-angular.mjs +49 -29
- package/fesm2015/lucide-angular.mjs.map +1 -1
- package/fesm2020/lucide-angular-src-icons.mjs +49 -29
- package/fesm2020/lucide-angular-src-icons.mjs.map +1 -1
- package/fesm2020/lucide-angular.mjs +49 -29
- package/fesm2020/lucide-angular.mjs.map +1 -1
- package/icons/eye-closed.d.ts +14 -0
- package/icons/linkedin.d.ts +1 -1
- package/icons/lucide-icons.d.ts +2 -1
- package/icons/{box-select.d.ts → square-dashed.d.ts} +4 -4
- package/package.json +1 -1
- package/src/icons/aliases.d.ts +7 -2
- package/src/icons/icons/eye-closed.d.ts +14 -0
- package/src/icons/icons/linkedin.d.ts +1 -1
- package/src/icons/icons/lucide-icons.d.ts +2 -1
- package/src/icons/icons/{box-select.d.ts → square-dashed.d.ts} +4 -4
- package/esm2020/icons/box-select.mjs +0 -27
package/aliases.d.ts
CHANGED
|
@@ -386,8 +386,6 @@ export { default as BotOffIcon } from './icons/bot-off';
|
|
|
386
386
|
export { default as LucideBotOff } from './icons/bot-off';
|
|
387
387
|
export { default as BotIcon } from './icons/bot';
|
|
388
388
|
export { default as LucideBot } from './icons/bot';
|
|
389
|
-
export { default as BoxSelectIcon } from './icons/box-select';
|
|
390
|
-
export { default as LucideBoxSelect } from './icons/box-select';
|
|
391
389
|
export { default as BoxIcon } from './icons/box';
|
|
392
390
|
export { default as LucideBox } from './icons/box';
|
|
393
391
|
export { default as BoxesIcon } from './icons/boxes';
|
|
@@ -902,6 +900,8 @@ export { default as ExpandIcon } from './icons/expand';
|
|
|
902
900
|
export { default as LucideExpand } from './icons/expand';
|
|
903
901
|
export { default as ExternalLinkIcon } from './icons/external-link';
|
|
904
902
|
export { default as LucideExternalLink } from './icons/external-link';
|
|
903
|
+
export { default as EyeClosedIcon } from './icons/eye-closed';
|
|
904
|
+
export { default as LucideEyeClosed } from './icons/eye-closed';
|
|
905
905
|
export { default as EyeOffIcon } from './icons/eye-off';
|
|
906
906
|
export { default as LucideEyeOff } from './icons/eye-off';
|
|
907
907
|
export { default as EyeIcon } from './icons/eye';
|
|
@@ -3598,6 +3598,11 @@ export { default as LucideSquareDashedMousePointer } from './icons/square-dashed
|
|
|
3598
3598
|
export { default as MousePointerSquareDashed } from './icons/square-dashed-mouse-pointer';
|
|
3599
3599
|
export { default as MousePointerSquareDashedIcon } from './icons/square-dashed-mouse-pointer';
|
|
3600
3600
|
export { default as LucideMousePointerSquareDashed } from './icons/square-dashed-mouse-pointer';
|
|
3601
|
+
export { default as SquareDashedIcon } from './icons/square-dashed';
|
|
3602
|
+
export { default as LucideSquareDashed } from './icons/square-dashed';
|
|
3603
|
+
export { default as BoxSelect } from './icons/square-dashed';
|
|
3604
|
+
export { default as BoxSelectIcon } from './icons/square-dashed';
|
|
3605
|
+
export { default as LucideBoxSelect } from './icons/square-dashed';
|
|
3601
3606
|
export { default as SquareDivideIcon } from './icons/square-divide';
|
|
3602
3607
|
export { default as LucideSquareDivide } from './icons/square-divide';
|
|
3603
3608
|
export { default as DivideSquare } from './icons/square-divide';
|