@lucide/astro 0.526.0 → 0.528.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.
Files changed (42) hide show
  1. package/package.json +1 -1
  2. package/src/aliases/aliases.ts +56 -50
  3. package/src/aliases/prefixed.ts +554 -544
  4. package/src/aliases/suffixed.ts +849 -839
  5. package/src/icons/arrow-big-down-dash.ts +2 -2
  6. package/src/icons/arrow-big-down.ts +2 -2
  7. package/src/icons/arrow-big-left-dash.ts +2 -2
  8. package/src/icons/arrow-big-left.ts +2 -2
  9. package/src/icons/arrow-big-right-dash.ts +2 -2
  10. package/src/icons/arrow-big-right.ts +2 -2
  11. package/src/icons/arrow-big-up-dash.ts +2 -2
  12. package/src/icons/arrow-big-up.ts +2 -2
  13. package/src/icons/bug-play.ts +2 -2
  14. package/src/icons/circle-play.ts +2 -2
  15. package/src/icons/croissant.ts +2 -2
  16. package/src/icons/fast-forward.ts +2 -2
  17. package/src/icons/file-play.ts +18 -0
  18. package/src/icons/{file-video-2.ts → file-video-camera.ts} +4 -4
  19. package/src/icons/gem.ts +2 -2
  20. package/src/icons/hat-glasses.ts +18 -0
  21. package/src/icons/image-play.ts +2 -2
  22. package/src/icons/index.ts +136 -132
  23. package/src/icons/lasso.ts +2 -2
  24. package/src/icons/list-video.ts +2 -2
  25. package/src/icons/monitor-dot.ts +2 -2
  26. package/src/icons/monitor-play.ts +2 -2
  27. package/src/icons/pause.ts +2 -2
  28. package/src/icons/play.ts +2 -2
  29. package/src/icons/refresh-ccw-dot.ts +2 -2
  30. package/src/icons/rewind.ts +2 -2
  31. package/src/icons/skip-back.ts +2 -2
  32. package/src/icons/skip-forward.ts +2 -2
  33. package/src/icons/sparkle.ts +2 -2
  34. package/src/icons/sparkles.ts +2 -2
  35. package/src/icons/spotlight.ts +18 -0
  36. package/src/icons/sprout.ts +2 -2
  37. package/src/icons/square-pause.ts +18 -0
  38. package/src/icons/square-play.ts +2 -2
  39. package/src/icons/{file-video.ts → square-stop.ts} +4 -4
  40. package/src/icons/step-back.ts +2 -2
  41. package/src/icons/step-forward.ts +2 -2
  42. package/src/icons/tv-minimal-play.ts +2 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lucide/astro",
3
- "version": "0.526.0",
3
+ "version": "0.528.0",
4
4
  "author": "Moustapha Kebe",
5
5
  "description": "A Lucide icon library package for Astro applications.",
6
6
  "license": "ISC",
@@ -17,12 +17,12 @@ export { default as SortDesc } from '../icons/arrow-down-wide-narrow';
17
17
  // ArrowDownZA aliases
18
18
  export { default as ArrowDownZa } from '../icons/arrow-down-z-a';
19
19
 
20
- // ArrowUpNarrowWide aliases
21
- export { default as SortAsc } from '../icons/arrow-up-narrow-wide';
22
-
23
20
  // ArrowUpAZ aliases
24
21
  export { default as ArrowUpAz } from '../icons/arrow-up-a-z';
25
22
 
23
+ // ArrowUpNarrowWide aliases
24
+ export { default as SortAsc } from '../icons/arrow-up-narrow-wide';
25
+
26
26
  // ArrowUpZA aliases
27
27
  export { default as ArrowUpZa } from '../icons/arrow-up-z-a';
28
28
 
@@ -41,15 +41,15 @@ export {
41
41
  default as BetweenHorizonalEnd
42
42
  } from '../icons/between-horizontal-end';
43
43
 
44
- // BookDashed aliases
45
- export { default as BookTemplate } from '../icons/book-dashed';
46
-
47
44
  // BetweenHorizontalStart aliases
48
45
  export {
49
46
  /** @deprecated Renamed because of typo, use {@link BetweenHorizontalStart} instead. This alias will be removed in v1.0 */
50
47
  default as BetweenHorizonalStart
51
48
  } from '../icons/between-horizontal-start';
52
49
 
50
+ // BookDashed aliases
51
+ export { default as BookTemplate } from '../icons/book-dashed';
52
+
53
53
  // Braces aliases
54
54
  export { default as CurlyBraces } from '../icons/braces';
55
55
 
@@ -98,18 +98,18 @@ export {
98
98
  default as BarChart3
99
99
  } from '../icons/chart-column';
100
100
 
101
- // ChartNoAxesColumnIncreasing aliases
102
- export {
103
- /** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartNoAxesColumnIncreasing} instead. This alias will be removed in v1.0 */
104
- default as BarChart
105
- } from '../icons/chart-no-axes-column-increasing';
106
-
107
101
  // ChartLine aliases
108
102
  export {
109
103
  /** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartLine} instead. This alias will be removed in v1.0 */
110
104
  default as LineChart
111
105
  } from '../icons/chart-line';
112
106
 
107
+ // ChartNoAxesColumnIncreasing aliases
108
+ export {
109
+ /** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartNoAxesColumnIncreasing} instead. This alias will be removed in v1.0 */
110
+ default as BarChart
111
+ } from '../icons/chart-no-axes-column-increasing';
112
+
113
113
  // ChartNoAxesColumn aliases
114
114
  export {
115
115
  /** @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 */
@@ -173,12 +173,12 @@ export { default as ChevronDownCircle } from '../icons/circle-chevron-down';
173
173
  // CircleChevronLeft aliases
174
174
  export { default as ChevronLeftCircle } from '../icons/circle-chevron-left';
175
175
 
176
- // CircleChevronUp aliases
177
- export { default as ChevronUpCircle } from '../icons/circle-chevron-up';
178
-
179
176
  // CircleChevronRight aliases
180
177
  export { default as ChevronRightCircle } from '../icons/circle-chevron-right';
181
178
 
179
+ // CircleChevronUp aliases
180
+ export { default as ChevronUpCircle } from '../icons/circle-chevron-up';
181
+
182
182
  // CircleDivide aliases
183
183
  export { default as DivideCircle } from '../icons/circle-divide';
184
184
 
@@ -209,15 +209,15 @@ export { default as PlusCircle } from '../icons/circle-plus';
209
209
  // CirclePower aliases
210
210
  export { default as PowerCircle } from '../icons/circle-power';
211
211
 
212
- // CircleSlash2 aliases
213
- export { default as CircleSlashed } from '../icons/circle-slash-2';
214
-
215
212
  // CircleQuestionMark aliases
216
213
  export { default as HelpCircle } from '../icons/circle-question-mark';
217
214
 
218
215
  // CircleQuestionMark aliases
219
216
  export { default as CircleHelp } from '../icons/circle-question-mark';
220
217
 
218
+ // CircleSlash2 aliases
219
+ export { default as CircleSlashed } from '../icons/circle-slash-2';
220
+
221
221
  // CircleStop aliases
222
222
  export { default as StopCircle } from '../icons/circle-stop';
223
223
 
@@ -233,12 +233,12 @@ export { default as UserCircle } from '../icons/circle-user';
233
233
  // CircleX aliases
234
234
  export { default as XCircle } from '../icons/circle-x';
235
235
 
236
- // ClipboardPen aliases
237
- export { default as ClipboardEdit } from '../icons/clipboard-pen';
238
-
239
236
  // ClipboardPenLine aliases
240
237
  export { default as ClipboardSignature } from '../icons/clipboard-pen-line';
241
238
 
239
+ // ClipboardPen aliases
240
+ export { default as ClipboardEdit } from '../icons/clipboard-pen';
241
+
242
242
  // CloudDownload aliases
243
243
  export { default as DownloadCloud } from '../icons/cloud-download';
244
244
 
@@ -323,24 +323,30 @@ export { default as FileSignature } from '../icons/file-pen-line';
323
323
  // FilePen aliases
324
324
  export { default as FileEdit } from '../icons/file-pen';
325
325
 
326
+ // FilePlay aliases
327
+ export { default as FileVideo } from '../icons/file-play';
328
+
326
329
  // FileQuestionMark aliases
327
330
  export { default as FileQuestion } from '../icons/file-question-mark';
328
331
 
332
+ // FileVideoCamera aliases
333
+ export { default as FileVideo2 } from '../icons/file-video-camera';
334
+
329
335
  // FolderCog aliases
330
336
  export {
331
337
  /** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FolderCog} instead. This alias will be removed in v1.0 */
332
338
  default as FolderCog2
333
339
  } from '../icons/folder-cog';
334
340
 
341
+ // FolderPen aliases
342
+ export { default as FolderEdit } from '../icons/folder-pen';
343
+
335
344
  // FunnelX aliases
336
345
  export {
337
346
  /** @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 */
338
347
  default as FilterX
339
348
  } from '../icons/funnel-x';
340
349
 
341
- // FolderPen aliases
342
- export { default as FolderEdit } from '../icons/folder-pen';
343
-
344
350
  // Funnel aliases
345
351
  export {
346
352
  /** @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 */
@@ -395,15 +401,15 @@ export {
395
401
  default as Laptop2
396
402
  } from '../icons/laptop-minimal';
397
403
 
404
+ // LoaderCircle aliases
405
+ export { default as Loader2 } from '../icons/loader-circle';
406
+
398
407
  // Layers aliases
399
408
  export { default as Layers3 } from '../icons/layers';
400
409
 
401
410
  // LockKeyholeOpen aliases
402
411
  export { default as UnlockKeyhole } from '../icons/lock-keyhole-open';
403
412
 
404
- // LoaderCircle aliases
405
- export { default as Loader2 } from '../icons/loader-circle';
406
-
407
413
  // LockOpen aliases
408
414
  export { default as Unlock } from '../icons/lock-open';
409
415
 
@@ -437,15 +443,15 @@ export { default as Paintbrush2 } from '../icons/paintbrush-vertical';
437
443
  // PanelBottomDashed aliases
438
444
  export { default as PanelBottomInactive } from '../icons/panel-bottom-dashed';
439
445
 
446
+ // PanelLeftClose aliases
447
+ export { default as SidebarClose } from '../icons/panel-left-close';
448
+
440
449
  // PanelLeftDashed aliases
441
450
  export { default as PanelLeftInactive } from '../icons/panel-left-dashed';
442
451
 
443
452
  // PanelLeftOpen aliases
444
453
  export { default as SidebarOpen } from '../icons/panel-left-open';
445
454
 
446
- // PanelLeftClose aliases
447
- export { default as SidebarClose } from '../icons/panel-left-close';
448
-
449
455
  // PanelLeft aliases
450
456
  export { default as Sidebar } from '../icons/panel-left';
451
457
 
@@ -464,15 +470,15 @@ export {
464
470
  default as Edit3
465
471
  } from '../icons/pen-line';
466
472
 
473
+ // PlugZap aliases
474
+ export { default as PlugZap2 } from '../icons/plug-zap';
475
+
467
476
  // Pen aliases
468
477
  export {
469
478
  /** @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 */
470
479
  default as Edit2
471
480
  } from '../icons/pen';
472
481
 
473
- // PlugZap aliases
474
- export { default as PlugZap2 } from '../icons/plug-zap';
475
-
476
482
  // RectangleEllipsis aliases
477
483
  export { default as FormInput } from '../icons/rectangle-ellipsis';
478
484
 
@@ -482,12 +488,12 @@ export { default as Rotate3D } from '../icons/rotate-3d';
482
488
  // Rows2 aliases
483
489
  export { default as Rows } from '../icons/rows-2';
484
490
 
485
- // Scale3d aliases
486
- export { default as Scale3D } from '../icons/scale-3d';
487
-
488
491
  // Rows3 aliases
489
492
  export { default as PanelsTopBottom } from '../icons/rows-3';
490
493
 
494
+ // Scale3d aliases
495
+ export { default as Scale3D } from '../icons/scale-3d';
496
+
491
497
  // SendHorizontal aliases
492
498
  export {
493
499
  /** @deprecated Renamed because of typo, use {@link SendHorizontal} instead. This alias will be removed in v1.0 */
@@ -497,15 +503,15 @@ export {
497
503
  // ShieldQuestionMark aliases
498
504
  export { default as ShieldQuestion } from '../icons/shield-question-mark';
499
505
 
506
+ // SlidersVertical aliases
507
+ export { default as Sliders } from '../icons/sliders-vertical';
508
+
500
509
  // ShieldX aliases
501
510
  export { default as ShieldClose } from '../icons/shield-x';
502
511
 
503
512
  // Sparkles aliases
504
513
  export { default as Stars } from '../icons/sparkles';
505
514
 
506
- // SlidersVertical aliases
507
- export { default as Sliders } from '../icons/sliders-vertical';
508
-
509
515
  // SquareActivity aliases
510
516
  export { default as ActivitySquare } from '../icons/square-activity';
511
517
 
@@ -605,24 +611,24 @@ export { default as KanbanSquare } from '../icons/square-kanban';
605
611
  // SquareLibrary aliases
606
612
  export { default as LibrarySquare } from '../icons/square-library';
607
613
 
608
- // SquareMenu aliases
609
- export { default as MenuSquare } from '../icons/square-menu';
610
-
611
614
  // SquareM aliases
612
615
  export { default as MSquare } from '../icons/square-m';
613
616
 
617
+ // SquareMenu aliases
618
+ export { default as MenuSquare } from '../icons/square-menu';
619
+
614
620
  // SquareMinus aliases
615
621
  export { default as MinusSquare } from '../icons/square-minus';
616
622
 
617
623
  // SquareMousePointer aliases
618
624
  export { default as Inspect } from '../icons/square-mouse-pointer';
619
625
 
620
- // SquareParking aliases
621
- export { default as ParkingSquare } from '../icons/square-parking';
622
-
623
626
  // SquareParkingOff aliases
624
627
  export { default as ParkingSquareOff } from '../icons/square-parking-off';
625
628
 
629
+ // SquareParking aliases
630
+ export { default as ParkingSquare } from '../icons/square-parking';
631
+
626
632
  // SquarePen aliases
627
633
  export { default as PenBox } from '../icons/square-pen';
628
634
 
@@ -656,18 +662,18 @@ export { default as ScissorsSquare } from '../icons/square-scissors';
656
662
  // SquareSigma aliases
657
663
  export { default as SigmaSquare } from '../icons/square-sigma';
658
664
 
659
- // SquareSlash aliases
660
- export { default as SlashSquare } from '../icons/square-slash';
661
-
662
665
  // SquareSplitHorizontal aliases
663
666
  export { default as SplitSquareHorizontal } from '../icons/square-split-horizontal';
664
667
 
665
- // SquareTerminal aliases
666
- export { default as TerminalSquare } from '../icons/square-terminal';
668
+ // SquareSlash aliases
669
+ export { default as SlashSquare } from '../icons/square-slash';
667
670
 
668
671
  // SquareSplitVertical aliases
669
672
  export { default as SplitSquareVertical } from '../icons/square-split-vertical';
670
673
 
674
+ // SquareTerminal aliases
675
+ export { default as TerminalSquare } from '../icons/square-terminal';
676
+
671
677
  // SquareUserRound aliases
672
678
  export {
673
679
  /** @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 */