lucide-angular 0.241.0 → 0.243.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 +8 -0
- package/esm2020/aliases.mjs +13 -1
- package/esm2020/icons/binary.mjs +9 -3
- package/esm2020/icons/circle-dashed.mjs +18 -0
- package/esm2020/icons/circle-dot-dashed.mjs +19 -0
- package/esm2020/icons/file-digit.mjs +6 -3
- package/esm2020/icons/lucide-icons.mjs +5 -1
- package/esm2020/icons/refresh-ccw-dot.mjs +15 -0
- package/esm2020/icons/shapes.mjs +22 -0
- package/esm2020/src/icons/aliases.mjs +13 -1
- package/esm2020/src/icons/icons/binary.mjs +9 -3
- package/esm2020/src/icons/icons/circle-dashed.mjs +18 -0
- package/esm2020/src/icons/icons/circle-dot-dashed.mjs +19 -0
- package/esm2020/src/icons/icons/file-digit.mjs +6 -3
- package/esm2020/src/icons/icons/lucide-icons.mjs +5 -1
- package/esm2020/src/icons/icons/refresh-ccw-dot.mjs +15 -0
- package/esm2020/src/icons/icons/shapes.mjs +22 -0
- package/fesm2015/lucide-angular-src-icons.mjs +84 -5
- package/fesm2015/lucide-angular-src-icons.mjs.map +1 -1
- package/fesm2015/lucide-angular.mjs +84 -5
- package/fesm2015/lucide-angular.mjs.map +1 -1
- package/fesm2020/lucide-angular-src-icons.mjs +84 -5
- package/fesm2020/lucide-angular-src-icons.mjs.map +1 -1
- package/fesm2020/lucide-angular.mjs +84 -5
- package/fesm2020/lucide-angular.mjs.map +1 -1
- package/icons/circle-dashed.d.ts +3 -0
- package/icons/circle-dot-dashed.d.ts +3 -0
- package/icons/lucide-icons.d.ts +4 -0
- package/icons/refresh-ccw-dot.d.ts +3 -0
- package/icons/shapes.d.ts +3 -0
- package/package.json +1 -1
- package/src/icons/aliases.d.ts +8 -0
- package/src/icons/icons/circle-dashed.d.ts +3 -0
- package/src/icons/icons/circle-dot-dashed.d.ts +3 -0
- package/src/icons/icons/lucide-icons.d.ts +4 -0
- package/src/icons/icons/refresh-ccw-dot.d.ts +3 -0
- package/src/icons/icons/shapes.d.ts +3 -0
package/aliases.d.ts
CHANGED
|
@@ -527,8 +527,12 @@ export { default as CigaretteOffIcon } from './icons/cigarette-off';
|
|
|
527
527
|
export { default as LucideCigaretteOff } from './icons/cigarette-off';
|
|
528
528
|
export { default as CigaretteIcon } from './icons/cigarette';
|
|
529
529
|
export { default as LucideCigarette } from './icons/cigarette';
|
|
530
|
+
export { default as CircleDashedIcon } from './icons/circle-dashed';
|
|
531
|
+
export { default as LucideCircleDashed } from './icons/circle-dashed';
|
|
530
532
|
export { default as CircleDollarSignIcon } from './icons/circle-dollar-sign';
|
|
531
533
|
export { default as LucideCircleDollarSign } from './icons/circle-dollar-sign';
|
|
534
|
+
export { default as CircleDotDashedIcon } from './icons/circle-dot-dashed';
|
|
535
|
+
export { default as LucideCircleDotDashed } from './icons/circle-dot-dashed';
|
|
532
536
|
export { default as CircleDotIcon } from './icons/circle-dot';
|
|
533
537
|
export { default as LucideCircleDot } from './icons/circle-dot';
|
|
534
538
|
export { default as CircleEllipsisIcon } from './icons/circle-ellipsis';
|
|
@@ -1760,6 +1764,8 @@ export { default as RedoDotIcon } from './icons/redo-dot';
|
|
|
1760
1764
|
export { default as LucideRedoDot } from './icons/redo-dot';
|
|
1761
1765
|
export { default as RedoIcon } from './icons/redo';
|
|
1762
1766
|
export { default as LucideRedo } from './icons/redo';
|
|
1767
|
+
export { default as RefreshCcwDotIcon } from './icons/refresh-ccw-dot';
|
|
1768
|
+
export { default as LucideRefreshCcwDot } from './icons/refresh-ccw-dot';
|
|
1763
1769
|
export { default as RefreshCcwIcon } from './icons/refresh-ccw';
|
|
1764
1770
|
export { default as LucideRefreshCcw } from './icons/refresh-ccw';
|
|
1765
1771
|
export { default as RefreshCwOffIcon } from './icons/refresh-cw-off';
|
|
@@ -1880,6 +1886,8 @@ export { default as Settings2Icon } from './icons/settings-2';
|
|
|
1880
1886
|
export { default as LucideSettings2 } from './icons/settings-2';
|
|
1881
1887
|
export { default as SettingsIcon } from './icons/settings';
|
|
1882
1888
|
export { default as LucideSettings } from './icons/settings';
|
|
1889
|
+
export { default as ShapesIcon } from './icons/shapes';
|
|
1890
|
+
export { default as LucideShapes } from './icons/shapes';
|
|
1883
1891
|
export { default as Share2Icon } from './icons/share-2';
|
|
1884
1892
|
export { default as LucideShare2 } from './icons/share-2';
|
|
1885
1893
|
export { default as ShareIcon } from './icons/share';
|