@lucide/astro 0.510.0 → 0.511.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 (45) hide show
  1. package/package.json +1 -1
  2. package/src/aliases/aliases.ts +17 -17
  3. package/src/aliases/prefixed.ts +387 -385
  4. package/src/aliases/suffixed.ts +705 -703
  5. package/src/icons/axis-3d.ts +2 -2
  6. package/src/icons/chevrons-left-right-ellipsis.ts +2 -2
  7. package/src/icons/clock-6.ts +2 -2
  8. package/src/icons/code.ts +2 -2
  9. package/src/icons/corner-down-left.ts +2 -2
  10. package/src/icons/corner-down-right.ts +2 -2
  11. package/src/icons/corner-left-down.ts +2 -2
  12. package/src/icons/corner-left-up.ts +2 -2
  13. package/src/icons/corner-right-down.ts +2 -2
  14. package/src/icons/corner-right-up.ts +2 -2
  15. package/src/icons/corner-up-left.ts +2 -2
  16. package/src/icons/corner-up-right.ts +2 -2
  17. package/src/icons/download.ts +2 -2
  18. package/src/icons/factory.ts +2 -2
  19. package/src/icons/forward.ts +2 -2
  20. package/src/icons/index.ts +58 -57
  21. package/src/icons/iteration-ccw.ts +2 -2
  22. package/src/icons/iteration-cw.ts +2 -2
  23. package/src/icons/landmark.ts +2 -2
  24. package/src/icons/log-in.ts +2 -2
  25. package/src/icons/log-out.ts +2 -2
  26. package/src/icons/maximize-2.ts +2 -2
  27. package/src/icons/minimize-2.ts +2 -2
  28. package/src/icons/reply-all.ts +2 -2
  29. package/src/icons/reply.ts +2 -2
  30. package/src/icons/satellite.ts +2 -2
  31. package/src/icons/separator-horizontal.ts +2 -2
  32. package/src/icons/separator-vertical.ts +2 -2
  33. package/src/icons/share.ts +2 -2
  34. package/src/icons/square-code.ts +2 -2
  35. package/src/icons/square-dashed-top-solid.ts +18 -0
  36. package/src/icons/terminal.ts +2 -2
  37. package/src/icons/trending-down.ts +2 -2
  38. package/src/icons/trending-up.ts +2 -2
  39. package/src/icons/tv.ts +2 -2
  40. package/src/icons/type.ts +2 -2
  41. package/src/icons/university.ts +2 -2
  42. package/src/icons/upload.ts +2 -2
  43. package/src/icons/user-check.ts +2 -2
  44. package/src/icons/warehouse.ts +2 -2
  45. package/src/icons/wrap-text.ts +2 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lucide/astro",
3
- "version": "0.510.0",
3
+ "version": "0.511.0",
4
4
  "author": "Moustapha Kebe",
5
5
  "description": "A Lucide icon library package for Astro applications.",
6
6
  "license": "ISC",
@@ -38,15 +38,15 @@ export {
38
38
  default as BetweenHorizonalEnd
39
39
  } from '../icons/between-horizontal-end';
40
40
 
41
+ // BookDashed aliases
42
+ export { default as BookTemplate } from '../icons/book-dashed';
43
+
41
44
  // BetweenHorizontalStart aliases
42
45
  export {
43
46
  /** @deprecated Renamed because of typo, use {@link BetweenHorizontalStart} instead. This alias will be removed in v1.0 */
44
47
  default as BetweenHorizonalStart
45
48
  } from '../icons/between-horizontal-start';
46
49
 
47
- // BookDashed aliases
48
- export { default as BookTemplate } from '../icons/book-dashed';
49
-
50
50
  // Braces aliases
51
51
  export { default as CurlyBraces } from '../icons/braces';
52
52
 
@@ -89,18 +89,18 @@ export {
89
89
  default as BarChart4
90
90
  } from '../icons/chart-column-increasing';
91
91
 
92
- // ChartLine aliases
93
- export {
94
- /** @deprecated */
95
- default as LineChart
96
- } from '../icons/chart-line';
97
-
98
92
  // ChartColumn aliases
99
93
  export {
100
94
  /** @deprecated */
101
95
  default as BarChart3
102
96
  } from '../icons/chart-column';
103
97
 
98
+ // ChartLine aliases
99
+ export {
100
+ /** @deprecated */
101
+ default as LineChart
102
+ } from '../icons/chart-line';
103
+
104
104
  // ChartNoAxesColumnIncreasing aliases
105
105
  export {
106
106
  /** @deprecated */
@@ -662,18 +662,18 @@ export { default as UserSquare } from '../icons/square-user';
662
662
  // SquareX aliases
663
663
  export { default as XSquare } from '../icons/square-x';
664
664
 
665
- // TextSelect aliases
666
- export { default as TextSelection } from '../icons/text-select';
667
-
668
665
  // TestTubeDiagonal aliases
669
666
  export { default as TestTube2 } from '../icons/test-tube-diagonal';
670
667
 
671
- // TreePalm aliases
672
- export { default as Palmtree } from '../icons/tree-palm';
668
+ // TextSelect aliases
669
+ export { default as TextSelection } from '../icons/text-select';
673
670
 
674
671
  // TramFront aliases
675
672
  export { default as Train } from '../icons/tram-front';
676
673
 
674
+ // TreePalm aliases
675
+ export { default as Palmtree } from '../icons/tree-palm';
676
+
677
677
  // TriangleAlert aliases
678
678
  export { default as AlertTriangle } from '../icons/triangle-alert';
679
679
 
@@ -731,6 +731,9 @@ export {
731
731
  default as Users2
732
732
  } from '../icons/users-round';
733
733
 
734
+ // UtensilsCrossed aliases
735
+ export { default as ForkKnifeCrossed } from '../icons/utensils-crossed';
736
+
734
737
  // Utensils aliases
735
738
  export { default as ForkKnife } from '../icons/utensils';
736
739
 
@@ -740,9 +743,6 @@ export {
740
743
  default as Wallet2
741
744
  } from '../icons/wallet-minimal';
742
745
 
743
- // UtensilsCrossed aliases
744
- export { default as ForkKnifeCrossed } from '../icons/utensils-crossed';
745
-
746
746
  // WandSparkles aliases
747
747
  export {
748
748
  /** @deprecated */