@lucide/astro 1.20.0 → 1.22.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 +76 -76
- package/src/aliases/prefixed.ts +491 -475
- package/src/aliases/suffixed.ts +726 -710
- package/src/icons/bone-fracture.ts +18 -0
- package/src/icons/carrot.ts +2 -2
- package/src/icons/database-arrow-down.ts +18 -0
- package/src/icons/database-arrow-up.ts +18 -0
- package/src/icons/database-check.ts +18 -0
- package/src/icons/database-minus.ts +18 -0
- package/src/icons/database-plus.ts +18 -0
- package/src/icons/database-x.ts +18 -0
- package/src/icons/index.ts +147 -139
- package/src/icons/phi.ts +18 -0
- package/src/icons/ungroup.ts +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lucide/astro",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.22.0",
|
|
4
4
|
"author": "Moustapha Kebe",
|
|
5
5
|
"description": "A Lucide icon library package for Astro applications.",
|
|
6
6
|
"license": "ISC",
|
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
"@lucide/build-icons": "1.1.0"
|
|
53
53
|
},
|
|
54
54
|
"peerDependencies": {
|
|
55
|
-
"astro": "^4 || ^5 || ^6"
|
|
55
|
+
"astro": "^4 || ^5 || ^6 || ^7"
|
|
56
56
|
},
|
|
57
57
|
"scripts": {
|
|
58
58
|
"build": "pnpm clean && pnpm copy:license && pnpm copy:utils && pnpm build:icons",
|
package/src/aliases/aliases.ts
CHANGED
|
@@ -41,18 +41,18 @@ export {
|
|
|
41
41
|
default as ArrowUpAz
|
|
42
42
|
} from '../icons/arrow-up-a-z';
|
|
43
43
|
|
|
44
|
-
// ArrowUpZA aliases
|
|
45
|
-
export {
|
|
46
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ArrowUpZA} instead. This alias will be removed in v1.0 */
|
|
47
|
-
default as ArrowUpZa
|
|
48
|
-
} from '../icons/arrow-up-z-a';
|
|
49
|
-
|
|
50
44
|
// ArrowUpNarrowWide aliases
|
|
51
45
|
export {
|
|
52
46
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ArrowUpNarrowWide} instead. This alias will be removed in v1.0 */
|
|
53
47
|
default as SortAsc
|
|
54
48
|
} from '../icons/arrow-up-narrow-wide';
|
|
55
49
|
|
|
50
|
+
// ArrowUpZA aliases
|
|
51
|
+
export {
|
|
52
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ArrowUpZA} instead. This alias will be removed in v1.0 */
|
|
53
|
+
default as ArrowUpZa
|
|
54
|
+
} from '../icons/arrow-up-z-a';
|
|
55
|
+
|
|
56
56
|
// Axis3d aliases
|
|
57
57
|
export {
|
|
58
58
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Axis3d} instead. This alias will be removed in v1.0 */
|
|
@@ -155,6 +155,12 @@ export {
|
|
|
155
155
|
default as BarChart
|
|
156
156
|
} from '../icons/chart-no-axes-column-increasing';
|
|
157
157
|
|
|
158
|
+
// ChartNoAxesGantt aliases
|
|
159
|
+
export {
|
|
160
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartNoAxesGantt} instead. This alias will be removed in v1.0 */
|
|
161
|
+
default as GanttChart
|
|
162
|
+
} from '../icons/chart-no-axes-gantt';
|
|
163
|
+
|
|
158
164
|
// ChartNoAxesColumn aliases
|
|
159
165
|
export {
|
|
160
166
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartNoAxesColumn} instead. This alias will be removed in v1.0 */
|
|
@@ -167,12 +173,6 @@ export {
|
|
|
167
173
|
default as PieChart
|
|
168
174
|
} from '../icons/chart-pie';
|
|
169
175
|
|
|
170
|
-
// ChartNoAxesGantt aliases
|
|
171
|
-
export {
|
|
172
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartNoAxesGantt} instead. This alias will be removed in v1.0 */
|
|
173
|
-
default as GanttChart
|
|
174
|
-
} from '../icons/chart-no-axes-gantt';
|
|
175
|
-
|
|
176
176
|
// ChartScatter aliases
|
|
177
177
|
export {
|
|
178
178
|
/** @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 */
|
|
@@ -305,18 +305,18 @@ export {
|
|
|
305
305
|
default as PauseCircle
|
|
306
306
|
} from '../icons/circle-pause';
|
|
307
307
|
|
|
308
|
-
// CirclePlay aliases
|
|
309
|
-
export {
|
|
310
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CirclePlay} instead. This alias will be removed in v1.0 */
|
|
311
|
-
default as PlayCircle
|
|
312
|
-
} from '../icons/circle-play';
|
|
313
|
-
|
|
314
308
|
// CirclePercent aliases
|
|
315
309
|
export {
|
|
316
310
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CirclePercent} instead. This alias will be removed in v1.0 */
|
|
317
311
|
default as PercentCircle
|
|
318
312
|
} from '../icons/circle-percent';
|
|
319
313
|
|
|
314
|
+
// CirclePlay aliases
|
|
315
|
+
export {
|
|
316
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CirclePlay} instead. This alias will be removed in v1.0 */
|
|
317
|
+
default as PlayCircle
|
|
318
|
+
} from '../icons/circle-play';
|
|
319
|
+
|
|
320
320
|
// CirclePlus aliases
|
|
321
321
|
export {
|
|
322
322
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CirclePlus} instead. This alias will be removed in v1.0 */
|
|
@@ -341,18 +341,18 @@ export {
|
|
|
341
341
|
default as CircleHelp
|
|
342
342
|
} from '../icons/circle-question-mark';
|
|
343
343
|
|
|
344
|
-
// CircleStop aliases
|
|
345
|
-
export {
|
|
346
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleStop} instead. This alias will be removed in v1.0 */
|
|
347
|
-
default as StopCircle
|
|
348
|
-
} from '../icons/circle-stop';
|
|
349
|
-
|
|
350
344
|
// CircleSlash2 aliases
|
|
351
345
|
export {
|
|
352
346
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleSlash2} instead. This alias will be removed in v1.0 */
|
|
353
347
|
default as CircleSlashed
|
|
354
348
|
} from '../icons/circle-slash-2';
|
|
355
349
|
|
|
350
|
+
// CircleStop aliases
|
|
351
|
+
export {
|
|
352
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleStop} instead. This alias will be removed in v1.0 */
|
|
353
|
+
default as StopCircle
|
|
354
|
+
} from '../icons/circle-stop';
|
|
355
|
+
|
|
356
356
|
// CircleUserRound aliases
|
|
357
357
|
export {
|
|
358
358
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleUserRound} instead. This alias will be removed in v1.0 */
|
|
@@ -491,18 +491,18 @@ export {
|
|
|
491
491
|
default as FileBarChart2
|
|
492
492
|
} from '../icons/file-chart-column';
|
|
493
493
|
|
|
494
|
-
// FileChartPie aliases
|
|
495
|
-
export {
|
|
496
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileChartPie} instead. This alias will be removed in v1.0 */
|
|
497
|
-
default as FilePieChart
|
|
498
|
-
} from '../icons/file-chart-pie';
|
|
499
|
-
|
|
500
494
|
// FileChartLine aliases
|
|
501
495
|
export {
|
|
502
496
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileChartLine} instead. This alias will be removed in v1.0 */
|
|
503
497
|
default as FileLineChart
|
|
504
498
|
} from '../icons/file-chart-line';
|
|
505
499
|
|
|
500
|
+
// FileChartPie aliases
|
|
501
|
+
export {
|
|
502
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileChartPie} instead. This alias will be removed in v1.0 */
|
|
503
|
+
default as FilePieChart
|
|
504
|
+
} from '../icons/file-chart-pie';
|
|
505
|
+
|
|
506
506
|
// FileCheckCorner aliases
|
|
507
507
|
export {
|
|
508
508
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileCheckCorner} instead. This alias will be removed in v1.0 */
|
|
@@ -635,18 +635,18 @@ export {
|
|
|
635
635
|
default as FolderEdit
|
|
636
636
|
} from '../icons/folder-pen';
|
|
637
637
|
|
|
638
|
-
// Funnel aliases
|
|
639
|
-
export {
|
|
640
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Funnel} instead. This alias will be removed in v1.0 */
|
|
641
|
-
default as Filter
|
|
642
|
-
} from '../icons/funnel';
|
|
643
|
-
|
|
644
638
|
// FunnelX aliases
|
|
645
639
|
export {
|
|
646
640
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FunnelX} instead. This alias will be removed in v1.0 */
|
|
647
641
|
default as FilterX
|
|
648
642
|
} from '../icons/funnel-x';
|
|
649
643
|
|
|
644
|
+
// Funnel aliases
|
|
645
|
+
export {
|
|
646
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Funnel} instead. This alias will be removed in v1.0 */
|
|
647
|
+
default as Filter
|
|
648
|
+
} from '../icons/funnel';
|
|
649
|
+
|
|
650
650
|
// GitCommitHorizontal aliases
|
|
651
651
|
export {
|
|
652
652
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link GitCommitHorizontal} instead. This alias will be removed in v1.0 */
|
|
@@ -707,18 +707,18 @@ export {
|
|
|
707
707
|
default as Home
|
|
708
708
|
} from '../icons/house';
|
|
709
709
|
|
|
710
|
-
// IceCreamCone aliases
|
|
711
|
-
export {
|
|
712
|
-
/** @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 */
|
|
713
|
-
default as IceCream
|
|
714
|
-
} from '../icons/ice-cream-cone';
|
|
715
|
-
|
|
716
710
|
// IceCreamBowl aliases
|
|
717
711
|
export {
|
|
718
712
|
/** @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 */
|
|
719
713
|
default as IceCream2
|
|
720
714
|
} from '../icons/ice-cream-bowl';
|
|
721
715
|
|
|
716
|
+
// IceCreamCone aliases
|
|
717
|
+
export {
|
|
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 */
|
|
719
|
+
default as IceCream
|
|
720
|
+
} from '../icons/ice-cream-cone';
|
|
721
|
+
|
|
722
722
|
// LaptopMinimal aliases
|
|
723
723
|
export {
|
|
724
724
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link LaptopMinimal} instead. This alias will be removed in v1.0 */
|
|
@@ -851,18 +851,18 @@ export {
|
|
|
851
851
|
default as SidebarOpen
|
|
852
852
|
} from '../icons/panel-left-open';
|
|
853
853
|
|
|
854
|
-
// PanelRightDashed aliases
|
|
855
|
-
export {
|
|
856
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link PanelRightDashed} instead. This alias will be removed in v1.0 */
|
|
857
|
-
default as PanelRightInactive
|
|
858
|
-
} from '../icons/panel-right-dashed';
|
|
859
|
-
|
|
860
854
|
// PanelLeft aliases
|
|
861
855
|
export {
|
|
862
856
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link PanelLeft} instead. This alias will be removed in v1.0 */
|
|
863
857
|
default as Sidebar
|
|
864
858
|
} from '../icons/panel-left';
|
|
865
859
|
|
|
860
|
+
// PanelRightDashed aliases
|
|
861
|
+
export {
|
|
862
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link PanelRightDashed} instead. This alias will be removed in v1.0 */
|
|
863
|
+
default as PanelRightInactive
|
|
864
|
+
} from '../icons/panel-right-dashed';
|
|
865
|
+
|
|
866
866
|
// PanelTopDashed aliases
|
|
867
867
|
export {
|
|
868
868
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link PanelTopDashed} instead. This alias will be removed in v1.0 */
|
|
@@ -881,18 +881,18 @@ export {
|
|
|
881
881
|
default as Edit3
|
|
882
882
|
} from '../icons/pen-line';
|
|
883
883
|
|
|
884
|
-
// PlugZap aliases
|
|
885
|
-
export {
|
|
886
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link PlugZap} instead. This alias will be removed in v1.0 */
|
|
887
|
-
default as PlugZap2
|
|
888
|
-
} from '../icons/plug-zap';
|
|
889
|
-
|
|
890
884
|
// Pen aliases
|
|
891
885
|
export {
|
|
892
886
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Pen} instead. This alias will be removed in v1.0 */
|
|
893
887
|
default as Edit2
|
|
894
888
|
} from '../icons/pen';
|
|
895
889
|
|
|
890
|
+
// PlugZap aliases
|
|
891
|
+
export {
|
|
892
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link PlugZap} instead. This alias will be removed in v1.0 */
|
|
893
|
+
default as PlugZap2
|
|
894
|
+
} from '../icons/plug-zap';
|
|
895
|
+
|
|
896
896
|
// RectangleEllipsis aliases
|
|
897
897
|
export {
|
|
898
898
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link RectangleEllipsis} instead. This alias will be removed in v1.0 */
|
|
@@ -1265,41 +1265,35 @@ export {
|
|
|
1265
1265
|
default as PowerSquare
|
|
1266
1266
|
} from '../icons/square-power';
|
|
1267
1267
|
|
|
1268
|
-
// SquareSigma aliases
|
|
1269
|
-
export {
|
|
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 */
|
|
1271
|
-
default as SigmaSquare
|
|
1272
|
-
} from '../icons/square-sigma';
|
|
1273
|
-
|
|
1274
1268
|
// SquareScissors aliases
|
|
1275
1269
|
export {
|
|
1276
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 */
|
|
1277
1271
|
default as ScissorsSquare
|
|
1278
1272
|
} from '../icons/square-scissors';
|
|
1279
1273
|
|
|
1274
|
+
// SquareSigma aliases
|
|
1275
|
+
export {
|
|
1276
|
+
/** @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
|
+
default as SigmaSquare
|
|
1278
|
+
} from '../icons/square-sigma';
|
|
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 */
|
|
1283
1283
|
default as SlashSquare
|
|
1284
1284
|
} from '../icons/square-slash';
|
|
1285
1285
|
|
|
1286
|
-
// SquareSplitVertical aliases
|
|
1287
|
-
export {
|
|
1288
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareSplitVertical} instead. This alias will be removed in v1.0 */
|
|
1289
|
-
default as SplitSquareVertical
|
|
1290
|
-
} from '../icons/square-split-vertical';
|
|
1291
|
-
|
|
1292
1286
|
// SquareSplitHorizontal aliases
|
|
1293
1287
|
export {
|
|
1294
1288
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareSplitHorizontal} instead. This alias will be removed in v1.0 */
|
|
1295
1289
|
default as SplitSquareHorizontal
|
|
1296
1290
|
} from '../icons/square-split-horizontal';
|
|
1297
1291
|
|
|
1298
|
-
//
|
|
1292
|
+
// SquareSplitVertical aliases
|
|
1299
1293
|
export {
|
|
1300
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
1301
|
-
default as
|
|
1302
|
-
} from '../icons/square-
|
|
1294
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareSplitVertical} instead. This alias will be removed in v1.0 */
|
|
1295
|
+
default as SplitSquareVertical
|
|
1296
|
+
} from '../icons/square-split-vertical';
|
|
1303
1297
|
|
|
1304
1298
|
// SquareTerminal aliases
|
|
1305
1299
|
export {
|
|
@@ -1307,6 +1301,12 @@ export {
|
|
|
1307
1301
|
default as TerminalSquare
|
|
1308
1302
|
} from '../icons/square-terminal';
|
|
1309
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
1310
|
// SquareUser aliases
|
|
1311
1311
|
export {
|
|
1312
1312
|
/** @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 */
|
|
@@ -1331,18 +1331,18 @@ export {
|
|
|
1331
1331
|
default as AlignCenter
|
|
1332
1332
|
} from '../icons/text-align-center';
|
|
1333
1333
|
|
|
1334
|
-
// TextAlignJustify aliases
|
|
1335
|
-
export {
|
|
1336
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link TextAlignJustify} instead. This alias will be removed in v1.0 */
|
|
1337
|
-
default as AlignJustify
|
|
1338
|
-
} from '../icons/text-align-justify';
|
|
1339
|
-
|
|
1340
1334
|
// TextAlignEnd aliases
|
|
1341
1335
|
export {
|
|
1342
1336
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link TextAlignEnd} instead. This alias will be removed in v1.0 */
|
|
1343
1337
|
default as AlignRight
|
|
1344
1338
|
} from '../icons/text-align-end';
|
|
1345
1339
|
|
|
1340
|
+
// TextAlignJustify aliases
|
|
1341
|
+
export {
|
|
1342
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link TextAlignJustify} instead. This alias will be removed in v1.0 */
|
|
1343
|
+
default as AlignJustify
|
|
1344
|
+
} from '../icons/text-align-justify';
|
|
1345
|
+
|
|
1346
1346
|
// TextAlignStart aliases
|
|
1347
1347
|
export {
|
|
1348
1348
|
/** @deprecated The icon was combined with another icon that shares the same use case, use {@link TextAlignStart} instead. This alias will be removed in v1.0 */
|