@lucide/astro 1.24.0 → 1.26.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 +10 -10
- package/src/aliases/aliases.ts +48 -48
- package/src/aliases/prefixed.ts +657 -651
- package/src/aliases/suffixed.ts +895 -889
- package/src/icons/book-open-check.ts +2 -2
- package/src/icons/book-open-text.ts +2 -2
- package/src/icons/book-open.ts +2 -2
- package/src/icons/{circle-euro-sign.ts → circle-euro.ts} +4 -4
- package/src/icons/columns-3-cog.ts +2 -2
- package/src/icons/ethernet-port.ts +2 -2
- package/src/icons/file-box.ts +2 -2
- package/src/icons/hdmi-port.ts +2 -2
- package/src/icons/index.ts +166 -163
- package/src/icons/scan-box.ts +18 -0
- package/src/icons/server-plus.ts +18 -0
- package/src/icons/shield-keyhole.ts +18 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lucide/astro",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.26.0",
|
|
4
4
|
"author": "Moustapha Kebe",
|
|
5
5
|
"description": "A Lucide icon library package for Astro applications.",
|
|
6
6
|
"license": "ISC",
|
|
@@ -39,16 +39,16 @@
|
|
|
39
39
|
}
|
|
40
40
|
},
|
|
41
41
|
"devDependencies": {
|
|
42
|
-
"@astrojs/ts-plugin": "^1.10.
|
|
43
|
-
"@testing-library/dom": "^10.4.
|
|
44
|
-
"@testing-library/jest-dom": "^6.
|
|
45
|
-
"astro": "^6.
|
|
42
|
+
"@astrojs/ts-plugin": "^1.10.10",
|
|
43
|
+
"@testing-library/dom": "^10.4.1",
|
|
44
|
+
"@testing-library/jest-dom": "^6.9.1",
|
|
45
|
+
"astro": "^6.4.8",
|
|
46
46
|
"jest-serializer-html": "^7.1.0",
|
|
47
|
-
"linkedom": "^0.18.
|
|
48
|
-
"prettier": "^3.
|
|
49
|
-
"typescript": "^5.
|
|
50
|
-
"vite": "^7.3.
|
|
51
|
-
"vitest": "
|
|
47
|
+
"linkedom": "^0.18.13",
|
|
48
|
+
"prettier": "^3.9.5",
|
|
49
|
+
"typescript": "^5.9.3",
|
|
50
|
+
"vite": "^7.3.6",
|
|
51
|
+
"vitest": "4.1.10",
|
|
52
52
|
"@lucide/build-icons": "1.1.0"
|
|
53
53
|
},
|
|
54
54
|
"peerDependencies": {
|
package/src/aliases/aliases.ts
CHANGED
|
@@ -83,18 +83,18 @@ export {
|
|
|
83
83
|
default as BetweenHorizonalStart
|
|
84
84
|
} from '../icons/between-horizontal-start';
|
|
85
85
|
|
|
86
|
-
// Braces aliases
|
|
87
|
-
export {
|
|
88
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Braces} instead. */
|
|
89
|
-
default as CurlyBraces
|
|
90
|
-
} from '../icons/braces';
|
|
91
|
-
|
|
92
86
|
// BookDashed aliases
|
|
93
87
|
export {
|
|
94
88
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link BookDashed} instead. */
|
|
95
89
|
default as BookTemplate
|
|
96
90
|
} from '../icons/book-dashed';
|
|
97
91
|
|
|
92
|
+
// Braces aliases
|
|
93
|
+
export {
|
|
94
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Braces} instead. */
|
|
95
|
+
default as CurlyBraces
|
|
96
|
+
} from '../icons/braces';
|
|
97
|
+
|
|
98
98
|
// Captions aliases
|
|
99
99
|
export {
|
|
100
100
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Captions} instead. */
|
|
@@ -221,18 +221,18 @@ export {
|
|
|
221
221
|
default as ArrowUpRightFromCircle
|
|
222
222
|
} from '../icons/circle-arrow-out-up-right';
|
|
223
223
|
|
|
224
|
-
// CircleArrowRight aliases
|
|
225
|
-
export {
|
|
226
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleArrowRight} instead. */
|
|
227
|
-
default as ArrowRightCircle
|
|
228
|
-
} from '../icons/circle-arrow-right';
|
|
229
|
-
|
|
230
224
|
// CircleArrowUp aliases
|
|
231
225
|
export {
|
|
232
226
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleArrowUp} instead. */
|
|
233
227
|
default as ArrowUpCircle
|
|
234
228
|
} from '../icons/circle-arrow-up';
|
|
235
229
|
|
|
230
|
+
// CircleArrowRight aliases
|
|
231
|
+
export {
|
|
232
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleArrowRight} instead. */
|
|
233
|
+
default as ArrowRightCircle
|
|
234
|
+
} from '../icons/circle-arrow-right';
|
|
235
|
+
|
|
236
236
|
// CircleCheckBig aliases
|
|
237
237
|
export {
|
|
238
238
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleCheckBig} instead. */
|
|
@@ -443,18 +443,18 @@ export {
|
|
|
443
443
|
default as Globe2
|
|
444
444
|
} from '../icons/earth';
|
|
445
445
|
|
|
446
|
-
// EllipsisVertical aliases
|
|
447
|
-
export {
|
|
448
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link EllipsisVertical} instead. */
|
|
449
|
-
default as MoreVertical
|
|
450
|
-
} from '../icons/ellipsis-vertical';
|
|
451
|
-
|
|
452
446
|
// Ellipsis aliases
|
|
453
447
|
export {
|
|
454
448
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Ellipsis} instead. */
|
|
455
449
|
default as MoreHorizontal
|
|
456
450
|
} from '../icons/ellipsis';
|
|
457
451
|
|
|
452
|
+
// EllipsisVertical aliases
|
|
453
|
+
export {
|
|
454
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link EllipsisVertical} instead. */
|
|
455
|
+
default as MoreVertical
|
|
456
|
+
} from '../icons/ellipsis-vertical';
|
|
457
|
+
|
|
458
458
|
// FileAxis3d aliases
|
|
459
459
|
export {
|
|
460
460
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileAxis3d} instead. */
|
|
@@ -635,18 +635,18 @@ export {
|
|
|
635
635
|
default as FolderEdit
|
|
636
636
|
} from '../icons/folder-pen';
|
|
637
637
|
|
|
638
|
-
// FunnelX aliases
|
|
639
|
-
export {
|
|
640
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FunnelX} instead. */
|
|
641
|
-
default as FilterX
|
|
642
|
-
} from '../icons/funnel-x';
|
|
643
|
-
|
|
644
638
|
// Funnel aliases
|
|
645
639
|
export {
|
|
646
640
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Funnel} instead. */
|
|
647
641
|
default as Filter
|
|
648
642
|
} from '../icons/funnel';
|
|
649
643
|
|
|
644
|
+
// FunnelX aliases
|
|
645
|
+
export {
|
|
646
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FunnelX} instead. */
|
|
647
|
+
default as FilterX
|
|
648
|
+
} from '../icons/funnel-x';
|
|
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. */
|
|
@@ -995,18 +995,18 @@ export {
|
|
|
995
995
|
default as ArrowDownRightFromSquare
|
|
996
996
|
} from '../icons/square-arrow-out-down-right';
|
|
997
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. */
|
|
1001
|
-
default as ArrowUpLeftFromSquare
|
|
1002
|
-
} from '../icons/square-arrow-out-up-left';
|
|
1003
|
-
|
|
1004
998
|
// SquareArrowOutUpRight aliases
|
|
1005
999
|
export {
|
|
1006
1000
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowOutUpRight} instead. */
|
|
1007
1001
|
default as ArrowUpRightFromSquare
|
|
1008
1002
|
} from '../icons/square-arrow-out-up-right';
|
|
1009
1003
|
|
|
1004
|
+
// SquareArrowOutUpLeft aliases
|
|
1005
|
+
export {
|
|
1006
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowOutUpLeft} instead. */
|
|
1007
|
+
default as ArrowUpLeftFromSquare
|
|
1008
|
+
} from '../icons/square-arrow-out-up-left';
|
|
1009
|
+
|
|
1010
1010
|
// SquareArrowRight aliases
|
|
1011
1011
|
export {
|
|
1012
1012
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowRight} instead. */
|
|
@@ -1103,18 +1103,18 @@ export {
|
|
|
1103
1103
|
default as ChevronUpSquare
|
|
1104
1104
|
} from '../icons/square-chevron-up';
|
|
1105
1105
|
|
|
1106
|
-
// SquareCode aliases
|
|
1107
|
-
export {
|
|
1108
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareCode} instead. */
|
|
1109
|
-
default as CodeSquare
|
|
1110
|
-
} from '../icons/square-code';
|
|
1111
|
-
|
|
1112
1106
|
// SquareDashedKanban aliases
|
|
1113
1107
|
export {
|
|
1114
1108
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareDashedKanban} instead. */
|
|
1115
1109
|
default as KanbanSquareDashed
|
|
1116
1110
|
} from '../icons/square-dashed-kanban';
|
|
1117
1111
|
|
|
1112
|
+
// SquareCode aliases
|
|
1113
|
+
export {
|
|
1114
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareCode} instead. */
|
|
1115
|
+
default as CodeSquare
|
|
1116
|
+
} from '../icons/square-code';
|
|
1117
|
+
|
|
1118
1118
|
// SquareDashedMousePointer aliases
|
|
1119
1119
|
export {
|
|
1120
1120
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareDashedMousePointer} instead. */
|
|
@@ -1235,18 +1235,18 @@ export {
|
|
|
1235
1235
|
default as PercentSquare
|
|
1236
1236
|
} from '../icons/square-percent';
|
|
1237
1237
|
|
|
1238
|
-
// SquarePi aliases
|
|
1239
|
-
export {
|
|
1240
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquarePi} instead. */
|
|
1241
|
-
default as PiSquare
|
|
1242
|
-
} from '../icons/square-pi';
|
|
1243
|
-
|
|
1244
1238
|
// SquarePilcrow aliases
|
|
1245
1239
|
export {
|
|
1246
1240
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquarePilcrow} instead. */
|
|
1247
1241
|
default as PilcrowSquare
|
|
1248
1242
|
} from '../icons/square-pilcrow';
|
|
1249
1243
|
|
|
1244
|
+
// SquarePi aliases
|
|
1245
|
+
export {
|
|
1246
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquarePi} instead. */
|
|
1247
|
+
default as PiSquare
|
|
1248
|
+
} from '../icons/square-pi';
|
|
1249
|
+
|
|
1250
1250
|
// SquarePlay aliases
|
|
1251
1251
|
export {
|
|
1252
1252
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquarePlay} instead. */
|
|
@@ -1283,18 +1283,18 @@ export {
|
|
|
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. */
|
|
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. */
|
|
1295
1289
|
default as SplitSquareHorizontal
|
|
1296
1290
|
} from '../icons/square-split-horizontal';
|
|
1297
1291
|
|
|
1292
|
+
// SquareSplitVertical aliases
|
|
1293
|
+
export {
|
|
1294
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareSplitVertical} instead. */
|
|
1295
|
+
default as SplitSquareVertical
|
|
1296
|
+
} from '../icons/square-split-vertical';
|
|
1297
|
+
|
|
1298
1298
|
// SquareTerminal aliases
|
|
1299
1299
|
export {
|
|
1300
1300
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareTerminal} instead. */
|