@lucide/astro 1.15.0 → 1.17.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/package.json +2 -2
- package/src/aliases/aliases.ts +78 -78
- package/src/aliases/prefixed.ts +595 -589
- package/src/aliases/suffixed.ts +954 -948
- package/src/icons/blender.ts +18 -0
- package/src/icons/globe-check.ts +18 -0
- package/src/icons/index.ts +144 -141
- package/src/icons/martini.ts +2 -2
- package/src/icons/parasol.ts +18 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lucide/astro",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.17.0",
|
|
4
4
|
"author": "Moustapha Kebe",
|
|
5
5
|
"description": "A Lucide icon library package for Astro applications.",
|
|
6
6
|
"license": "ISC",
|
|
@@ -48,7 +48,7 @@
|
|
|
48
48
|
"typescript": "^5.8.3",
|
|
49
49
|
"vite": "^7.3.2",
|
|
50
50
|
"vitest": "^4.1.1",
|
|
51
|
-
"astro": "^6.1.
|
|
51
|
+
"astro": "^6.1.10",
|
|
52
52
|
"@lucide/build-icons": "1.1.0"
|
|
53
53
|
},
|
|
54
54
|
"peerDependencies": {
|
package/src/aliases/aliases.ts
CHANGED
|
@@ -23,18 +23,18 @@ export {
|
|
|
23
23
|
default as ArrowDownAz
|
|
24
24
|
} from '../icons/arrow-down-a-z';
|
|
25
25
|
|
|
26
|
-
// ArrowDownZA aliases
|
|
27
|
-
export {
|
|
28
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ArrowDownZA} instead. This alias will be removed in v1.0 */
|
|
29
|
-
default as ArrowDownZa
|
|
30
|
-
} from '../icons/arrow-down-z-a';
|
|
31
|
-
|
|
32
26
|
// ArrowDownWideNarrow aliases
|
|
33
27
|
export {
|
|
34
28
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ArrowDownWideNarrow} instead. This alias will be removed in v1.0 */
|
|
35
29
|
default as SortDesc
|
|
36
30
|
} from '../icons/arrow-down-wide-narrow';
|
|
37
31
|
|
|
32
|
+
// ArrowDownZA aliases
|
|
33
|
+
export {
|
|
34
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ArrowDownZA} instead. This alias will be removed in v1.0 */
|
|
35
|
+
default as ArrowDownZa
|
|
36
|
+
} from '../icons/arrow-down-z-a';
|
|
37
|
+
|
|
38
38
|
// ArrowUpAZ aliases
|
|
39
39
|
export {
|
|
40
40
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ArrowUpAZ} instead. This alias will be removed in v1.0 */
|
|
@@ -167,18 +167,18 @@ export {
|
|
|
167
167
|
default as GanttChart
|
|
168
168
|
} from '../icons/chart-no-axes-gantt';
|
|
169
169
|
|
|
170
|
-
// ChartPie aliases
|
|
171
|
-
export {
|
|
172
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartPie} instead. This alias will be removed in v1.0 */
|
|
173
|
-
default as PieChart
|
|
174
|
-
} from '../icons/chart-pie';
|
|
175
|
-
|
|
176
170
|
// ChartScatter aliases
|
|
177
171
|
export {
|
|
178
172
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartScatter} instead. This alias will be removed in v1.0 */
|
|
179
173
|
default as ScatterChart
|
|
180
174
|
} from '../icons/chart-scatter';
|
|
181
175
|
|
|
176
|
+
// ChartPie aliases
|
|
177
|
+
export {
|
|
178
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartPie} instead. This alias will be removed in v1.0 */
|
|
179
|
+
default as PieChart
|
|
180
|
+
} from '../icons/chart-pie';
|
|
181
|
+
|
|
182
182
|
// CircleAlert aliases
|
|
183
183
|
export {
|
|
184
184
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleAlert} instead. This alias will be removed in v1.0 */
|
|
@@ -701,18 +701,18 @@ export {
|
|
|
701
701
|
default as HelpingHand
|
|
702
702
|
} from '../icons/hand-helping';
|
|
703
703
|
|
|
704
|
-
// House aliases
|
|
705
|
-
export {
|
|
706
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link House} instead. This alias will be removed in v1.0 */
|
|
707
|
-
default as Home
|
|
708
|
-
} from '../icons/house';
|
|
709
|
-
|
|
710
704
|
// IceCreamBowl aliases
|
|
711
705
|
export {
|
|
712
706
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link IceCreamBowl} instead. This alias will be removed in v1.0 */
|
|
713
707
|
default as IceCream2
|
|
714
708
|
} from '../icons/ice-cream-bowl';
|
|
715
709
|
|
|
710
|
+
// House aliases
|
|
711
|
+
export {
|
|
712
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link House} instead. This alias will be removed in v1.0 */
|
|
713
|
+
default as Home
|
|
714
|
+
} from '../icons/house';
|
|
715
|
+
|
|
716
716
|
// IceCreamCone aliases
|
|
717
717
|
export {
|
|
718
718
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link IceCreamCone} instead. This alias will be removed in v1.0 */
|
|
@@ -755,18 +755,18 @@ export {
|
|
|
755
755
|
default as IndentIncrease
|
|
756
756
|
} from '../icons/list-indent-increase';
|
|
757
757
|
|
|
758
|
-
// LockKeyholeOpen aliases
|
|
759
|
-
export {
|
|
760
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link LockKeyholeOpen} instead. This alias will be removed in v1.0 */
|
|
761
|
-
default as UnlockKeyhole
|
|
762
|
-
} from '../icons/lock-keyhole-open';
|
|
763
|
-
|
|
764
758
|
// LoaderCircle aliases
|
|
765
759
|
export {
|
|
766
760
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link LoaderCircle} instead. This alias will be removed in v1.0 */
|
|
767
761
|
default as Loader2
|
|
768
762
|
} from '../icons/loader-circle';
|
|
769
763
|
|
|
764
|
+
// LockKeyholeOpen aliases
|
|
765
|
+
export {
|
|
766
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link LockKeyholeOpen} instead. This alias will be removed in v1.0 */
|
|
767
|
+
default as UnlockKeyhole
|
|
768
|
+
} from '../icons/lock-keyhole-open';
|
|
769
|
+
|
|
770
770
|
// LockOpen aliases
|
|
771
771
|
export {
|
|
772
772
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link LockOpen} instead. This alias will be removed in v1.0 */
|
|
@@ -905,18 +905,18 @@ export {
|
|
|
905
905
|
default as Rotate3D
|
|
906
906
|
} from '../icons/rotate-3d';
|
|
907
907
|
|
|
908
|
-
// Rows3 aliases
|
|
909
|
-
export {
|
|
910
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Rows3} instead. This alias will be removed in v1.0 */
|
|
911
|
-
default as PanelsTopBottom
|
|
912
|
-
} from '../icons/rows-3';
|
|
913
|
-
|
|
914
908
|
// Rows2 aliases
|
|
915
909
|
export {
|
|
916
910
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Rows2} instead. This alias will be removed in v1.0 */
|
|
917
911
|
default as Rows
|
|
918
912
|
} from '../icons/rows-2';
|
|
919
913
|
|
|
914
|
+
// Rows3 aliases
|
|
915
|
+
export {
|
|
916
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Rows3} instead. This alias will be removed in v1.0 */
|
|
917
|
+
default as PanelsTopBottom
|
|
918
|
+
} from '../icons/rows-3';
|
|
919
|
+
|
|
920
920
|
// Scale3d aliases
|
|
921
921
|
export {
|
|
922
922
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Scale3d} instead. This alias will be removed in v1.0 */
|
|
@@ -947,18 +947,18 @@ export {
|
|
|
947
947
|
default as Sliders
|
|
948
948
|
} from '../icons/sliders-vertical';
|
|
949
949
|
|
|
950
|
-
// SquareActivity aliases
|
|
951
|
-
export {
|
|
952
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareActivity} instead. This alias will be removed in v1.0 */
|
|
953
|
-
default as ActivitySquare
|
|
954
|
-
} from '../icons/square-activity';
|
|
955
|
-
|
|
956
950
|
// Sparkles aliases
|
|
957
951
|
export {
|
|
958
952
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Sparkles} instead. This alias will be removed in v1.0 */
|
|
959
953
|
default as Stars
|
|
960
954
|
} from '../icons/sparkles';
|
|
961
955
|
|
|
956
|
+
// SquareActivity aliases
|
|
957
|
+
export {
|
|
958
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareActivity} instead. This alias will be removed in v1.0 */
|
|
959
|
+
default as ActivitySquare
|
|
960
|
+
} from '../icons/square-activity';
|
|
961
|
+
|
|
962
962
|
// SquareArrowDownLeft aliases
|
|
963
963
|
export {
|
|
964
964
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowDownLeft} instead. This alias will be removed in v1.0 */
|
|
@@ -989,18 +989,18 @@ export {
|
|
|
989
989
|
default as ArrowDownLeftFromSquare
|
|
990
990
|
} from '../icons/square-arrow-out-down-left';
|
|
991
991
|
|
|
992
|
-
// SquareArrowOutUpLeft aliases
|
|
993
|
-
export {
|
|
994
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowOutUpLeft} instead. This alias will be removed in v1.0 */
|
|
995
|
-
default as ArrowUpLeftFromSquare
|
|
996
|
-
} from '../icons/square-arrow-out-up-left';
|
|
997
|
-
|
|
998
992
|
// SquareArrowOutDownRight aliases
|
|
999
993
|
export {
|
|
1000
994
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowOutDownRight} instead. This alias will be removed in v1.0 */
|
|
1001
995
|
default as ArrowDownRightFromSquare
|
|
1002
996
|
} from '../icons/square-arrow-out-down-right';
|
|
1003
997
|
|
|
998
|
+
// SquareArrowOutUpLeft aliases
|
|
999
|
+
export {
|
|
1000
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowOutUpLeft} instead. This alias will be removed in v1.0 */
|
|
1001
|
+
default as ArrowUpLeftFromSquare
|
|
1002
|
+
} from '../icons/square-arrow-out-up-left';
|
|
1003
|
+
|
|
1004
1004
|
// SquareArrowOutUpRight aliases
|
|
1005
1005
|
export {
|
|
1006
1006
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowOutUpRight} instead. This alias will be removed in v1.0 */
|
|
@@ -1115,6 +1115,12 @@ export {
|
|
|
1115
1115
|
default as KanbanSquareDashed
|
|
1116
1116
|
} from '../icons/square-dashed-kanban';
|
|
1117
1117
|
|
|
1118
|
+
// SquareDashedMousePointer aliases
|
|
1119
|
+
export {
|
|
1120
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareDashedMousePointer} instead. This alias will be removed in v1.0 */
|
|
1121
|
+
default as MousePointerSquareDashed
|
|
1122
|
+
} from '../icons/square-dashed-mouse-pointer';
|
|
1123
|
+
|
|
1118
1124
|
// SquareDashedText aliases
|
|
1119
1125
|
export {
|
|
1120
1126
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareDashedText} instead. This alias will be removed in v1.0 */
|
|
@@ -1127,12 +1133,6 @@ export {
|
|
|
1127
1133
|
default as TextSelect
|
|
1128
1134
|
} from '../icons/square-dashed-text';
|
|
1129
1135
|
|
|
1130
|
-
// SquareDashedMousePointer aliases
|
|
1131
|
-
export {
|
|
1132
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareDashedMousePointer} instead. This alias will be removed in v1.0 */
|
|
1133
|
-
default as MousePointerSquareDashed
|
|
1134
|
-
} from '../icons/square-dashed-mouse-pointer';
|
|
1135
|
-
|
|
1136
1136
|
// SquareDashed aliases
|
|
1137
1137
|
export {
|
|
1138
1138
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareDashed} instead. This alias will be removed in v1.0 */
|
|
@@ -1181,18 +1181,18 @@ export {
|
|
|
1181
1181
|
default as MSquare
|
|
1182
1182
|
} from '../icons/square-m';
|
|
1183
1183
|
|
|
1184
|
-
// SquareMinus aliases
|
|
1185
|
-
export {
|
|
1186
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareMinus} instead. This alias will be removed in v1.0 */
|
|
1187
|
-
default as MinusSquare
|
|
1188
|
-
} from '../icons/square-minus';
|
|
1189
|
-
|
|
1190
1184
|
// SquareMenu aliases
|
|
1191
1185
|
export {
|
|
1192
1186
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareMenu} instead. This alias will be removed in v1.0 */
|
|
1193
1187
|
default as MenuSquare
|
|
1194
1188
|
} from '../icons/square-menu';
|
|
1195
1189
|
|
|
1190
|
+
// SquareMinus aliases
|
|
1191
|
+
export {
|
|
1192
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareMinus} instead. This alias will be removed in v1.0 */
|
|
1193
|
+
default as MinusSquare
|
|
1194
|
+
} from '../icons/square-minus';
|
|
1195
|
+
|
|
1196
1196
|
// SquareMousePointer aliases
|
|
1197
1197
|
export {
|
|
1198
1198
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareMousePointer} instead. This alias will be removed in v1.0 */
|
|
@@ -1211,12 +1211,6 @@ export {
|
|
|
1211
1211
|
default as ParkingSquare
|
|
1212
1212
|
} from '../icons/square-parking';
|
|
1213
1213
|
|
|
1214
|
-
// SquarePercent aliases
|
|
1215
|
-
export {
|
|
1216
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquarePercent} instead. This alias will be removed in v1.0 */
|
|
1217
|
-
default as PercentSquare
|
|
1218
|
-
} from '../icons/square-percent';
|
|
1219
|
-
|
|
1220
1214
|
// SquarePen aliases
|
|
1221
1215
|
export {
|
|
1222
1216
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquarePen} instead. This alias will be removed in v1.0 */
|
|
@@ -1235,6 +1229,12 @@ export {
|
|
|
1235
1229
|
default as PenSquare
|
|
1236
1230
|
} from '../icons/square-pen';
|
|
1237
1231
|
|
|
1232
|
+
// SquarePercent aliases
|
|
1233
|
+
export {
|
|
1234
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquarePercent} instead. This alias will be removed in v1.0 */
|
|
1235
|
+
default as PercentSquare
|
|
1236
|
+
} from '../icons/square-percent';
|
|
1237
|
+
|
|
1238
1238
|
// SquarePi aliases
|
|
1239
1239
|
export {
|
|
1240
1240
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquarePi} instead. This alias will be removed in v1.0 */
|
|
@@ -1265,18 +1265,18 @@ export {
|
|
|
1265
1265
|
default as PowerSquare
|
|
1266
1266
|
} from '../icons/square-power';
|
|
1267
1267
|
|
|
1268
|
-
// SquareScissors aliases
|
|
1269
|
-
export {
|
|
1270
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareScissors} instead. This alias will be removed in v1.0 */
|
|
1271
|
-
default as ScissorsSquare
|
|
1272
|
-
} from '../icons/square-scissors';
|
|
1273
|
-
|
|
1274
1268
|
// SquareSigma aliases
|
|
1275
1269
|
export {
|
|
1276
1270
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareSigma} instead. This alias will be removed in v1.0 */
|
|
1277
1271
|
default as SigmaSquare
|
|
1278
1272
|
} from '../icons/square-sigma';
|
|
1279
1273
|
|
|
1274
|
+
// SquareScissors aliases
|
|
1275
|
+
export {
|
|
1276
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareScissors} instead. This alias will be removed in v1.0 */
|
|
1277
|
+
default as ScissorsSquare
|
|
1278
|
+
} from '../icons/square-scissors';
|
|
1279
|
+
|
|
1280
1280
|
// SquareSlash aliases
|
|
1281
1281
|
export {
|
|
1282
1282
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareSlash} instead. This alias will be removed in v1.0 */
|
|
@@ -1301,18 +1301,18 @@ export {
|
|
|
1301
1301
|
default as TerminalSquare
|
|
1302
1302
|
} from '../icons/square-terminal';
|
|
1303
1303
|
|
|
1304
|
-
// SquareUserRound aliases
|
|
1305
|
-
export {
|
|
1306
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareUserRound} instead. This alias will be removed in v1.0 */
|
|
1307
|
-
default as UserSquare2
|
|
1308
|
-
} from '../icons/square-user-round';
|
|
1309
|
-
|
|
1310
1304
|
// SquareUser aliases
|
|
1311
1305
|
export {
|
|
1312
1306
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareUser} instead. This alias will be removed in v1.0 */
|
|
1313
1307
|
default as UserSquare
|
|
1314
1308
|
} from '../icons/square-user';
|
|
1315
1309
|
|
|
1310
|
+
// SquareUserRound aliases
|
|
1311
|
+
export {
|
|
1312
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareUserRound} instead. This alias will be removed in v1.0 */
|
|
1313
|
+
default as UserSquare2
|
|
1314
|
+
} from '../icons/square-user-round';
|
|
1315
|
+
|
|
1316
1316
|
// SquareX aliases
|
|
1317
1317
|
export {
|
|
1318
1318
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareX} instead. This alias will be removed in v1.0 */
|
|
@@ -1445,18 +1445,18 @@ export {
|
|
|
1445
1445
|
default as ForkKnifeCrossed
|
|
1446
1446
|
} from '../icons/utensils-crossed';
|
|
1447
1447
|
|
|
1448
|
-
// Utensils aliases
|
|
1449
|
-
export {
|
|
1450
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Utensils} instead. This alias will be removed in v1.0 */
|
|
1451
|
-
default as ForkKnife
|
|
1452
|
-
} from '../icons/utensils';
|
|
1453
|
-
|
|
1454
1448
|
// WalletMinimal aliases
|
|
1455
1449
|
export {
|
|
1456
1450
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link WalletMinimal} instead. This alias will be removed in v1.0 */
|
|
1457
1451
|
default as Wallet2
|
|
1458
1452
|
} from '../icons/wallet-minimal';
|
|
1459
1453
|
|
|
1454
|
+
// Utensils aliases
|
|
1455
|
+
export {
|
|
1456
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Utensils} instead. This alias will be removed in v1.0 */
|
|
1457
|
+
default as ForkKnife
|
|
1458
|
+
} from '../icons/utensils';
|
|
1459
|
+
|
|
1460
1460
|
// WandSparkles aliases
|
|
1461
1461
|
export {
|
|
1462
1462
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link WandSparkles} instead. This alias will be removed in v1.0 */
|