@lucide/astro 0.542.0 → 0.544.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 +1 -1
- package/src/aliases/aliases.ts +102 -48
- package/src/aliases/prefixed.ts +447 -407
- package/src/aliases/suffixed.ts +742 -702
- package/src/icons/bug-off.ts +2 -2
- package/src/icons/bug-play.ts +2 -2
- package/src/icons/bug.ts +2 -2
- package/src/icons/calendar-cog.ts +2 -2
- package/src/icons/chart-no-axes-column-decreasing.ts +2 -2
- package/src/icons/chart-no-axes-column-increasing.ts +2 -2
- package/src/icons/chart-no-axes-column.ts +2 -2
- package/src/icons/chart-no-axes-gantt.ts +2 -2
- package/src/icons/church.ts +2 -2
- package/src/icons/ev-charger.ts +18 -0
- package/src/icons/fuel.ts +2 -2
- package/src/icons/house-heart.ts +18 -0
- package/src/icons/house-plug.ts +2 -2
- package/src/icons/house-plus.ts +2 -2
- package/src/icons/house-wifi.ts +2 -2
- package/src/icons/house.ts +2 -2
- package/src/icons/index.ts +130 -128
- package/src/icons/kanban.ts +2 -2
- package/src/icons/list-check.ts +2 -2
- package/src/icons/list-checks.ts +2 -2
- package/src/icons/list-chevrons-down-up.ts +2 -2
- package/src/icons/list-chevrons-up-down.ts +18 -0
- package/src/icons/list-collapse.ts +2 -2
- package/src/icons/list-end.ts +2 -2
- package/src/icons/list-filter-plus.ts +2 -2
- package/src/icons/list-filter.ts +2 -2
- package/src/icons/list-indent-decrease.ts +18 -0
- package/src/icons/list-indent-increase.ts +18 -0
- package/src/icons/list-minus.ts +2 -2
- package/src/icons/list-music.ts +2 -2
- package/src/icons/list-ordered.ts +2 -2
- package/src/icons/list-plus.ts +2 -2
- package/src/icons/list-restart.ts +2 -2
- package/src/icons/list-start.ts +2 -2
- package/src/icons/list-todo.ts +2 -2
- package/src/icons/list-tree.ts +2 -2
- package/src/icons/list-video.ts +2 -2
- package/src/icons/list-x.ts +2 -2
- package/src/icons/list.ts +2 -2
- package/src/icons/logs.ts +2 -2
- package/src/icons/menu.ts +2 -2
- package/src/icons/message-square-quote.ts +2 -2
- package/src/icons/panel-left-right-dashed.ts +2 -2
- package/src/icons/panel-top-bottom-dashed.ts +2 -2
- package/src/icons/sliders-horizontal.ts +2 -2
- package/src/icons/sliders-vertical.ts +2 -2
- package/src/icons/table-of-contents.ts +2 -2
- package/src/icons/{align-left.ts → text-align-center.ts} +4 -4
- package/src/icons/{align-center.ts → text-align-end.ts} +4 -4
- package/src/icons/{align-right.ts → text-align-justify.ts} +4 -4
- package/src/icons/{align-justify.ts → text-align-start.ts} +4 -4
- package/src/icons/{indent-decrease.ts → text-initial.ts} +4 -4
- package/src/icons/text-quote.ts +2 -2
- package/src/icons/text-search.ts +2 -2
- package/src/icons/text-wrap.ts +18 -0
- package/src/icons/indent-increase.ts +0 -18
- package/src/icons/letter-text.ts +0 -18
- package/src/icons/text.ts +0 -18
- package/src/icons/wrap-text.ts +0 -18
package/package.json
CHANGED
package/src/aliases/aliases.ts
CHANGED
|
@@ -5,18 +5,18 @@ export {
|
|
|
5
5
|
default as AlarmCheck
|
|
6
6
|
} from '../icons/alarm-clock-check';
|
|
7
7
|
|
|
8
|
-
// AlarmClockPlus aliases
|
|
9
|
-
export {
|
|
10
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link AlarmClockPlus} instead. This alias will be removed in v1.0 */
|
|
11
|
-
default as AlarmPlus
|
|
12
|
-
} from '../icons/alarm-clock-plus';
|
|
13
|
-
|
|
14
8
|
// AlarmClockMinus aliases
|
|
15
9
|
export {
|
|
16
10
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link AlarmClockMinus} instead. This alias will be removed in v1.0 */
|
|
17
11
|
default as AlarmMinus
|
|
18
12
|
} from '../icons/alarm-clock-minus';
|
|
19
13
|
|
|
14
|
+
// AlarmClockPlus aliases
|
|
15
|
+
export {
|
|
16
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link AlarmClockPlus} instead. This alias will be removed in v1.0 */
|
|
17
|
+
default as AlarmPlus
|
|
18
|
+
} from '../icons/alarm-clock-plus';
|
|
19
|
+
|
|
20
20
|
// ArrowDownAZ aliases
|
|
21
21
|
export {
|
|
22
22
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ArrowDownAZ} instead. This alias will be removed in v1.0 */
|
|
@@ -335,12 +335,6 @@ export {
|
|
|
335
335
|
default as PowerCircle
|
|
336
336
|
} from '../icons/circle-power';
|
|
337
337
|
|
|
338
|
-
// CircleSlash2 aliases
|
|
339
|
-
export {
|
|
340
|
-
/** @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 */
|
|
341
|
-
default as CircleSlashed
|
|
342
|
-
} from '../icons/circle-slash-2';
|
|
343
|
-
|
|
344
338
|
// CircleQuestionMark aliases
|
|
345
339
|
export {
|
|
346
340
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleQuestionMark} instead. This alias will be removed in v1.0 */
|
|
@@ -353,6 +347,12 @@ export {
|
|
|
353
347
|
default as CircleHelp
|
|
354
348
|
} from '../icons/circle-question-mark';
|
|
355
349
|
|
|
350
|
+
// CircleSlash2 aliases
|
|
351
|
+
export {
|
|
352
|
+
/** @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
|
+
default as CircleSlashed
|
|
354
|
+
} from '../icons/circle-slash-2';
|
|
355
|
+
|
|
356
356
|
// CircleStop aliases
|
|
357
357
|
export {
|
|
358
358
|
/** @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 */
|
|
@@ -449,18 +449,18 @@ export {
|
|
|
449
449
|
default as Globe2
|
|
450
450
|
} from '../icons/earth';
|
|
451
451
|
|
|
452
|
-
// Ellipsis aliases
|
|
453
|
-
export {
|
|
454
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Ellipsis} instead. This alias will be removed in v1.0 */
|
|
455
|
-
default as MoreHorizontal
|
|
456
|
-
} from '../icons/ellipsis';
|
|
457
|
-
|
|
458
452
|
// EllipsisVertical aliases
|
|
459
453
|
export {
|
|
460
454
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link EllipsisVertical} instead. This alias will be removed in v1.0 */
|
|
461
455
|
default as MoreVertical
|
|
462
456
|
} from '../icons/ellipsis-vertical';
|
|
463
457
|
|
|
458
|
+
// Ellipsis aliases
|
|
459
|
+
export {
|
|
460
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Ellipsis} instead. This alias will be removed in v1.0 */
|
|
461
|
+
default as MoreHorizontal
|
|
462
|
+
} from '../icons/ellipsis';
|
|
463
|
+
|
|
464
464
|
// FileAxis3d aliases
|
|
465
465
|
export {
|
|
466
466
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileAxis3d} instead. This alias will be removed in v1.0 */
|
|
@@ -623,18 +623,6 @@ export {
|
|
|
623
623
|
default as IceCream
|
|
624
624
|
} from '../icons/ice-cream-cone';
|
|
625
625
|
|
|
626
|
-
// IndentDecrease aliases
|
|
627
|
-
export {
|
|
628
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link IndentDecrease} instead. This alias will be removed in v1.0 */
|
|
629
|
-
default as Outdent
|
|
630
|
-
} from '../icons/indent-decrease';
|
|
631
|
-
|
|
632
|
-
// IndentIncrease aliases
|
|
633
|
-
export {
|
|
634
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link IndentIncrease} instead. This alias will be removed in v1.0 */
|
|
635
|
-
default as Indent
|
|
636
|
-
} from '../icons/indent-increase';
|
|
637
|
-
|
|
638
626
|
// LaptopMinimal aliases
|
|
639
627
|
export {
|
|
640
628
|
/** @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 */
|
|
@@ -647,6 +635,30 @@ export {
|
|
|
647
635
|
default as Layers3
|
|
648
636
|
} from '../icons/layers';
|
|
649
637
|
|
|
638
|
+
// ListIndentDecrease aliases
|
|
639
|
+
export {
|
|
640
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ListIndentDecrease} instead. This alias will be removed in v1.0 */
|
|
641
|
+
default as Outdent
|
|
642
|
+
} from '../icons/list-indent-decrease';
|
|
643
|
+
|
|
644
|
+
// ListIndentDecrease aliases
|
|
645
|
+
export {
|
|
646
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ListIndentDecrease} instead. This alias will be removed in v1.0 */
|
|
647
|
+
default as IndentDecrease
|
|
648
|
+
} from '../icons/list-indent-decrease';
|
|
649
|
+
|
|
650
|
+
// ListIndentIncrease aliases
|
|
651
|
+
export {
|
|
652
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ListIndentIncrease} instead. This alias will be removed in v1.0 */
|
|
653
|
+
default as Indent
|
|
654
|
+
} from '../icons/list-indent-increase';
|
|
655
|
+
|
|
656
|
+
// ListIndentIncrease aliases
|
|
657
|
+
export {
|
|
658
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ListIndentIncrease} instead. This alias will be removed in v1.0 */
|
|
659
|
+
default as IndentIncrease
|
|
660
|
+
} from '../icons/list-indent-increase';
|
|
661
|
+
|
|
650
662
|
// LoaderCircle aliases
|
|
651
663
|
export {
|
|
652
664
|
/** @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 */
|
|
@@ -851,18 +863,18 @@ export {
|
|
|
851
863
|
default as ActivitySquare
|
|
852
864
|
} from '../icons/square-activity';
|
|
853
865
|
|
|
854
|
-
// SquareArrowDownRight aliases
|
|
855
|
-
export {
|
|
856
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowDownRight} instead. This alias will be removed in v1.0 */
|
|
857
|
-
default as ArrowDownRightSquare
|
|
858
|
-
} from '../icons/square-arrow-down-right';
|
|
859
|
-
|
|
860
866
|
// SquareArrowDownLeft aliases
|
|
861
867
|
export {
|
|
862
868
|
/** @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 */
|
|
863
869
|
default as ArrowDownLeftSquare
|
|
864
870
|
} from '../icons/square-arrow-down-left';
|
|
865
871
|
|
|
872
|
+
// SquareArrowDownRight aliases
|
|
873
|
+
export {
|
|
874
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowDownRight} instead. This alias will be removed in v1.0 */
|
|
875
|
+
default as ArrowDownRightSquare
|
|
876
|
+
} from '../icons/square-arrow-down-right';
|
|
877
|
+
|
|
866
878
|
// SquareArrowDown aliases
|
|
867
879
|
export {
|
|
868
880
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowDown} instead. This alias will be removed in v1.0 */
|
|
@@ -875,6 +887,12 @@ export {
|
|
|
875
887
|
default as ArrowLeftSquare
|
|
876
888
|
} from '../icons/square-arrow-left';
|
|
877
889
|
|
|
890
|
+
// SquareArrowOutDownLeft aliases
|
|
891
|
+
export {
|
|
892
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowOutDownLeft} instead. This alias will be removed in v1.0 */
|
|
893
|
+
default as ArrowDownLeftFromSquare
|
|
894
|
+
} from '../icons/square-arrow-out-down-left';
|
|
895
|
+
|
|
878
896
|
// SquareArrowOutDownRight aliases
|
|
879
897
|
export {
|
|
880
898
|
/** @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 */
|
|
@@ -887,12 +905,6 @@ export {
|
|
|
887
905
|
default as ArrowUpLeftFromSquare
|
|
888
906
|
} from '../icons/square-arrow-out-up-left';
|
|
889
907
|
|
|
890
|
-
// SquareArrowOutDownLeft aliases
|
|
891
|
-
export {
|
|
892
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowOutDownLeft} instead. This alias will be removed in v1.0 */
|
|
893
|
-
default as ArrowDownLeftFromSquare
|
|
894
|
-
} from '../icons/square-arrow-out-down-left';
|
|
895
|
-
|
|
896
908
|
// SquareArrowOutUpRight aliases
|
|
897
909
|
export {
|
|
898
910
|
/** @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 */
|
|
@@ -989,18 +1001,18 @@ export {
|
|
|
989
1001
|
default as CodeSquare
|
|
990
1002
|
} from '../icons/square-code';
|
|
991
1003
|
|
|
992
|
-
// SquareDashedMousePointer aliases
|
|
993
|
-
export {
|
|
994
|
-
/** @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 */
|
|
995
|
-
default as MousePointerSquareDashed
|
|
996
|
-
} from '../icons/square-dashed-mouse-pointer';
|
|
997
|
-
|
|
998
1004
|
// SquareDashedKanban aliases
|
|
999
1005
|
export {
|
|
1000
1006
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareDashedKanban} instead. This alias will be removed in v1.0 */
|
|
1001
1007
|
default as KanbanSquareDashed
|
|
1002
1008
|
} from '../icons/square-dashed-kanban';
|
|
1003
1009
|
|
|
1010
|
+
// SquareDashedMousePointer aliases
|
|
1011
|
+
export {
|
|
1012
|
+
/** @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 */
|
|
1013
|
+
default as MousePointerSquareDashed
|
|
1014
|
+
} from '../icons/square-dashed-mouse-pointer';
|
|
1015
|
+
|
|
1004
1016
|
// SquareDashed aliases
|
|
1005
1017
|
export {
|
|
1006
1018
|
/** @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 */
|
|
@@ -1193,12 +1205,54 @@ export {
|
|
|
1193
1205
|
default as TestTube2
|
|
1194
1206
|
} from '../icons/test-tube-diagonal';
|
|
1195
1207
|
|
|
1208
|
+
// TextAlignCenter aliases
|
|
1209
|
+
export {
|
|
1210
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link TextAlignCenter} instead. This alias will be removed in v1.0 */
|
|
1211
|
+
default as AlignCenter
|
|
1212
|
+
} from '../icons/text-align-center';
|
|
1213
|
+
|
|
1214
|
+
// TextAlignEnd aliases
|
|
1215
|
+
export {
|
|
1216
|
+
/** @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 */
|
|
1217
|
+
default as AlignRight
|
|
1218
|
+
} from '../icons/text-align-end';
|
|
1219
|
+
|
|
1220
|
+
// TextAlignJustify aliases
|
|
1221
|
+
export {
|
|
1222
|
+
/** @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 */
|
|
1223
|
+
default as AlignJustify
|
|
1224
|
+
} from '../icons/text-align-justify';
|
|
1225
|
+
|
|
1226
|
+
// TextAlignStart aliases
|
|
1227
|
+
export {
|
|
1228
|
+
/** @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 */
|
|
1229
|
+
default as Text
|
|
1230
|
+
} from '../icons/text-align-start';
|
|
1231
|
+
|
|
1232
|
+
// TextAlignStart aliases
|
|
1233
|
+
export {
|
|
1234
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link TextAlignStart} instead. This alias will be removed in v1.0 */
|
|
1235
|
+
default as AlignLeft
|
|
1236
|
+
} from '../icons/text-align-start';
|
|
1237
|
+
|
|
1238
|
+
// TextInitial aliases
|
|
1239
|
+
export {
|
|
1240
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link TextInitial} instead. This alias will be removed in v1.0 */
|
|
1241
|
+
default as LetterText
|
|
1242
|
+
} from '../icons/text-initial';
|
|
1243
|
+
|
|
1196
1244
|
// TextSelect aliases
|
|
1197
1245
|
export {
|
|
1198
1246
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link TextSelect} instead. This alias will be removed in v1.0 */
|
|
1199
1247
|
default as TextSelection
|
|
1200
1248
|
} from '../icons/text-select';
|
|
1201
1249
|
|
|
1250
|
+
// TextWrap aliases
|
|
1251
|
+
export {
|
|
1252
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link TextWrap} instead. This alias will be removed in v1.0 */
|
|
1253
|
+
default as WrapText
|
|
1254
|
+
} from '../icons/text-wrap';
|
|
1255
|
+
|
|
1202
1256
|
// TramFront aliases
|
|
1203
1257
|
export {
|
|
1204
1258
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link TramFront} instead. This alias will be removed in v1.0 */
|