lucide-angular 0.344.0 → 0.346.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 +10 -0
- package/esm2020/aliases.mjs +16 -1
- package/esm2020/icons/airplay.mjs +3 -3
- package/esm2020/icons/app-window-mac.mjs +19 -0
- package/esm2020/icons/dock.mjs +18 -0
- package/esm2020/icons/lucide-icons.mjs +6 -1
- package/esm2020/icons/podcast.mjs +5 -11
- package/esm2020/icons/proportions.mjs +18 -0
- package/esm2020/icons/rotate-ccw-square.mjs +18 -0
- package/esm2020/icons/rotate-cw-square.mjs +18 -0
- package/esm2020/src/icons/aliases.mjs +16 -1
- package/esm2020/src/icons/icons/airplay.mjs +3 -3
- package/esm2020/src/icons/icons/app-window-mac.mjs +19 -0
- package/esm2020/src/icons/icons/dock.mjs +18 -0
- package/esm2020/src/icons/icons/lucide-icons.mjs +6 -1
- package/esm2020/src/icons/icons/podcast.mjs +5 -11
- package/esm2020/src/icons/icons/proportions.mjs +18 -0
- package/esm2020/src/icons/icons/rotate-ccw-square.mjs +18 -0
- package/esm2020/src/icons/icons/rotate-cw-square.mjs +18 -0
- package/fesm2015/lucide-angular-src-icons.mjs +98 -13
- package/fesm2015/lucide-angular-src-icons.mjs.map +1 -1
- package/fesm2015/lucide-angular.mjs +98 -13
- package/fesm2015/lucide-angular.mjs.map +1 -1
- package/fesm2020/lucide-angular-src-icons.mjs +98 -13
- package/fesm2020/lucide-angular-src-icons.mjs.map +1 -1
- package/fesm2020/lucide-angular.mjs +98 -13
- package/fesm2020/lucide-angular.mjs.map +1 -1
- package/icons/airplay.d.ts +1 -1
- package/icons/app-window-mac.d.ts +14 -0
- package/icons/dock.d.ts +14 -0
- package/icons/lucide-icons.d.ts +5 -0
- package/icons/podcast.d.ts +1 -1
- package/icons/proportions.d.ts +14 -0
- package/icons/rotate-ccw-square.d.ts +14 -0
- package/icons/rotate-cw-square.d.ts +14 -0
- package/package.json +1 -1
- package/src/icons/aliases.d.ts +10 -0
- package/src/icons/icons/airplay.d.ts +1 -1
- package/src/icons/icons/app-window-mac.d.ts +14 -0
- package/src/icons/icons/dock.d.ts +14 -0
- package/src/icons/icons/lucide-icons.d.ts +5 -0
- package/src/icons/icons/podcast.d.ts +1 -1
- package/src/icons/icons/proportions.d.ts +14 -0
- package/src/icons/icons/rotate-ccw-square.d.ts +14 -0
- package/src/icons/icons/rotate-cw-square.d.ts +14 -0
package/aliases.d.ts
CHANGED
|
@@ -98,6 +98,8 @@ export { default as AnvilIcon } from './icons/anvil';
|
|
|
98
98
|
export { default as LucideAnvil } from './icons/anvil';
|
|
99
99
|
export { default as ApertureIcon } from './icons/aperture';
|
|
100
100
|
export { default as LucideAperture } from './icons/aperture';
|
|
101
|
+
export { default as AppWindowMacIcon } from './icons/app-window-mac';
|
|
102
|
+
export { default as LucideAppWindowMac } from './icons/app-window-mac';
|
|
101
103
|
export { default as AppWindowIcon } from './icons/app-window';
|
|
102
104
|
export { default as LucideAppWindow } from './icons/app-window';
|
|
103
105
|
export { default as AppleIcon } from './icons/apple';
|
|
@@ -874,6 +876,8 @@ export { default as DnaOffIcon } from './icons/dna-off';
|
|
|
874
876
|
export { default as LucideDnaOff } from './icons/dna-off';
|
|
875
877
|
export { default as DnaIcon } from './icons/dna';
|
|
876
878
|
export { default as LucideDna } from './icons/dna';
|
|
879
|
+
export { default as DockIcon } from './icons/dock';
|
|
880
|
+
export { default as LucideDock } from './icons/dock';
|
|
877
881
|
export { default as DogIcon } from './icons/dog';
|
|
878
882
|
export { default as LucideDog } from './icons/dog';
|
|
879
883
|
export { default as DollarSignIcon } from './icons/dollar-sign';
|
|
@@ -1990,6 +1994,8 @@ export { default as PrinterIcon } from './icons/printer';
|
|
|
1990
1994
|
export { default as LucidePrinter } from './icons/printer';
|
|
1991
1995
|
export { default as ProjectorIcon } from './icons/projector';
|
|
1992
1996
|
export { default as LucideProjector } from './icons/projector';
|
|
1997
|
+
export { default as ProportionsIcon } from './icons/proportions';
|
|
1998
|
+
export { default as LucideProportions } from './icons/proportions';
|
|
1993
1999
|
export { default as PuzzleIcon } from './icons/puzzle';
|
|
1994
2000
|
export { default as LucidePuzzle } from './icons/puzzle';
|
|
1995
2001
|
export { default as PyramidIcon } from './icons/pyramid';
|
|
@@ -2090,8 +2096,12 @@ export { default as RockingChairIcon } from './icons/rocking-chair';
|
|
|
2090
2096
|
export { default as LucideRockingChair } from './icons/rocking-chair';
|
|
2091
2097
|
export { default as RollerCoasterIcon } from './icons/roller-coaster';
|
|
2092
2098
|
export { default as LucideRollerCoaster } from './icons/roller-coaster';
|
|
2099
|
+
export { default as RotateCcwSquareIcon } from './icons/rotate-ccw-square';
|
|
2100
|
+
export { default as LucideRotateCcwSquare } from './icons/rotate-ccw-square';
|
|
2093
2101
|
export { default as RotateCcwIcon } from './icons/rotate-ccw';
|
|
2094
2102
|
export { default as LucideRotateCcw } from './icons/rotate-ccw';
|
|
2103
|
+
export { default as RotateCwSquareIcon } from './icons/rotate-cw-square';
|
|
2104
|
+
export { default as LucideRotateCwSquare } from './icons/rotate-cw-square';
|
|
2095
2105
|
export { default as RotateCwIcon } from './icons/rotate-cw';
|
|
2096
2106
|
export { default as LucideRotateCw } from './icons/rotate-cw';
|
|
2097
2107
|
export { default as RouteOffIcon } from './icons/route-off';
|