@lucide/astro 1.17.0 → 1.19.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 +3 -4
- package/src/aliases/aliases.ts +48 -48
- package/src/aliases/prefixed.ts +622 -594
- package/src/aliases/suffixed.ts +997 -969
- package/src/icons/ad.ts +18 -0
- package/src/icons/eye-dashed.ts +18 -0
- package/src/icons/index.ts +149 -135
- package/src/icons/list-sort-ascending.ts +18 -0
- package/src/icons/list-sort-descending.ts +18 -0
- package/src/icons/play-off.ts +18 -0
- package/src/icons/podium.ts +18 -0
- package/src/icons/save-pen.ts +18 -0
- package/src/icons/save-plus.ts +18 -0
- package/src/icons/star-check.ts +18 -0
- package/src/icons/star-minus.ts +18 -0
- package/src/icons/star-plus.ts +18 -0
- package/src/icons/star-x.ts +18 -0
- package/src/icons/wallet-cards.ts +2 -2
- package/src/icons/webcam-off.ts +18 -0
- package/src/icons/wrench-off.ts +18 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lucide/astro",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.19.0",
|
|
4
4
|
"author": "Moustapha Kebe",
|
|
5
5
|
"description": "A Lucide icon library package for Astro applications.",
|
|
6
6
|
"license": "ISC",
|
|
@@ -42,13 +42,13 @@
|
|
|
42
42
|
"@astrojs/ts-plugin": "^1.10.4",
|
|
43
43
|
"@testing-library/dom": "^10.4.0",
|
|
44
44
|
"@testing-library/jest-dom": "^6.8.0",
|
|
45
|
+
"astro": "^6.1.10",
|
|
45
46
|
"jest-serializer-html": "^7.1.0",
|
|
46
47
|
"linkedom": "^0.18.5",
|
|
47
48
|
"prettier": "^3.4.2",
|
|
48
49
|
"typescript": "^5.8.3",
|
|
49
50
|
"vite": "^7.3.2",
|
|
50
51
|
"vitest": "^4.1.1",
|
|
51
|
-
"astro": "^6.1.10",
|
|
52
52
|
"@lucide/build-icons": "1.1.0"
|
|
53
53
|
},
|
|
54
54
|
"peerDependencies": {
|
|
@@ -61,7 +61,6 @@
|
|
|
61
61
|
"copy:license": "cp ../../LICENSE ./LICENSE",
|
|
62
62
|
"copy:utils": "mkdir -p ./src/utils && for f in hasA11yProp toKebabCase mergeClasses; do cp -f ../../packages/shared/src/utils/$f.ts ./src/utils/; done",
|
|
63
63
|
"test": "pnpm copy:utils && pnpm build:icons && vitest run",
|
|
64
|
-
"test:watch": "pnpm build:icons && vitest run --watch"
|
|
65
|
-
"version": "pnpm version --git-tag-version=false"
|
|
64
|
+
"test:watch": "pnpm build:icons && vitest run --watch"
|
|
66
65
|
}
|
|
67
66
|
}
|
package/src/aliases/aliases.ts
CHANGED
|
@@ -101,18 +101,18 @@ export {
|
|
|
101
101
|
default as Subtitles
|
|
102
102
|
} from '../icons/captions';
|
|
103
103
|
|
|
104
|
-
// ChartArea aliases
|
|
105
|
-
export {
|
|
106
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartArea} instead. This alias will be removed in v1.0 */
|
|
107
|
-
default as AreaChart
|
|
108
|
-
} from '../icons/chart-area';
|
|
109
|
-
|
|
110
104
|
// ChartBarBig aliases
|
|
111
105
|
export {
|
|
112
106
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartBarBig} instead. This alias will be removed in v1.0 */
|
|
113
107
|
default as BarChartHorizontalBig
|
|
114
108
|
} from '../icons/chart-bar-big';
|
|
115
109
|
|
|
110
|
+
// ChartArea aliases
|
|
111
|
+
export {
|
|
112
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartArea} instead. This alias will be removed in v1.0 */
|
|
113
|
+
default as AreaChart
|
|
114
|
+
} from '../icons/chart-area';
|
|
115
|
+
|
|
116
116
|
// ChartBar aliases
|
|
117
117
|
export {
|
|
118
118
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartBar} instead. This alias will be removed in v1.0 */
|
|
@@ -167,18 +167,18 @@ export {
|
|
|
167
167
|
default as GanttChart
|
|
168
168
|
} from '../icons/chart-no-axes-gantt';
|
|
169
169
|
|
|
170
|
-
// ChartScatter aliases
|
|
171
|
-
export {
|
|
172
|
-
/** @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 */
|
|
173
|
-
default as ScatterChart
|
|
174
|
-
} from '../icons/chart-scatter';
|
|
175
|
-
|
|
176
170
|
// ChartPie aliases
|
|
177
171
|
export {
|
|
178
172
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartPie} instead. This alias will be removed in v1.0 */
|
|
179
173
|
default as PieChart
|
|
180
174
|
} from '../icons/chart-pie';
|
|
181
175
|
|
|
176
|
+
// ChartScatter aliases
|
|
177
|
+
export {
|
|
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 */
|
|
179
|
+
default as ScatterChart
|
|
180
|
+
} from '../icons/chart-scatter';
|
|
181
|
+
|
|
182
182
|
// CircleAlert aliases
|
|
183
183
|
export {
|
|
184
184
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleAlert} instead. This alias will be removed in v1.0 */
|
|
@@ -209,18 +209,18 @@ export {
|
|
|
209
209
|
default as ArrowDownRightFromCircle
|
|
210
210
|
} from '../icons/circle-arrow-out-down-right';
|
|
211
211
|
|
|
212
|
-
// CircleArrowOutUpLeft aliases
|
|
213
|
-
export {
|
|
214
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleArrowOutUpLeft} instead. This alias will be removed in v1.0 */
|
|
215
|
-
default as ArrowUpLeftFromCircle
|
|
216
|
-
} from '../icons/circle-arrow-out-up-left';
|
|
217
|
-
|
|
218
212
|
// CircleArrowOutUpRight aliases
|
|
219
213
|
export {
|
|
220
214
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleArrowOutUpRight} instead. This alias will be removed in v1.0 */
|
|
221
215
|
default as ArrowUpRightFromCircle
|
|
222
216
|
} from '../icons/circle-arrow-out-up-right';
|
|
223
217
|
|
|
218
|
+
// CircleArrowOutUpLeft aliases
|
|
219
|
+
export {
|
|
220
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleArrowOutUpLeft} instead. This alias will be removed in v1.0 */
|
|
221
|
+
default as ArrowUpLeftFromCircle
|
|
222
|
+
} from '../icons/circle-arrow-out-up-left';
|
|
223
|
+
|
|
224
224
|
// CircleArrowRight aliases
|
|
225
225
|
export {
|
|
226
226
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleArrowRight} instead. This alias will be removed in v1.0 */
|
|
@@ -269,18 +269,18 @@ export {
|
|
|
269
269
|
default as ChevronUpCircle
|
|
270
270
|
} from '../icons/circle-chevron-up';
|
|
271
271
|
|
|
272
|
-
// CircleDivide aliases
|
|
273
|
-
export {
|
|
274
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleDivide} instead. This alias will be removed in v1.0 */
|
|
275
|
-
default as DivideCircle
|
|
276
|
-
} from '../icons/circle-divide';
|
|
277
|
-
|
|
278
272
|
// CircleGauge aliases
|
|
279
273
|
export {
|
|
280
274
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleGauge} instead. This alias will be removed in v1.0 */
|
|
281
275
|
default as GaugeCircle
|
|
282
276
|
} from '../icons/circle-gauge';
|
|
283
277
|
|
|
278
|
+
// CircleDivide aliases
|
|
279
|
+
export {
|
|
280
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleDivide} instead. This alias will be removed in v1.0 */
|
|
281
|
+
default as DivideCircle
|
|
282
|
+
} from '../icons/circle-divide';
|
|
283
|
+
|
|
284
284
|
// CircleMinus aliases
|
|
285
285
|
export {
|
|
286
286
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleMinus} instead. This alias will be removed in v1.0 */
|
|
@@ -701,18 +701,18 @@ export {
|
|
|
701
701
|
default as HelpingHand
|
|
702
702
|
} from '../icons/hand-helping';
|
|
703
703
|
|
|
704
|
-
// IceCreamBowl aliases
|
|
705
|
-
export {
|
|
706
|
-
/** @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 */
|
|
707
|
-
default as IceCream2
|
|
708
|
-
} from '../icons/ice-cream-bowl';
|
|
709
|
-
|
|
710
704
|
// House aliases
|
|
711
705
|
export {
|
|
712
706
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link House} instead. This alias will be removed in v1.0 */
|
|
713
707
|
default as Home
|
|
714
708
|
} from '../icons/house';
|
|
715
709
|
|
|
710
|
+
// IceCreamBowl aliases
|
|
711
|
+
export {
|
|
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 */
|
|
713
|
+
default as IceCream2
|
|
714
|
+
} from '../icons/ice-cream-bowl';
|
|
715
|
+
|
|
716
716
|
// IceCreamCone aliases
|
|
717
717
|
export {
|
|
718
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 */
|
|
@@ -809,18 +809,18 @@ export {
|
|
|
809
809
|
default as AlertOctagon
|
|
810
810
|
} from '../icons/octagon-alert';
|
|
811
811
|
|
|
812
|
-
// OctagonPause aliases
|
|
813
|
-
export {
|
|
814
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link OctagonPause} instead. This alias will be removed in v1.0 */
|
|
815
|
-
default as PauseOctagon
|
|
816
|
-
} from '../icons/octagon-pause';
|
|
817
|
-
|
|
818
812
|
// OctagonX aliases
|
|
819
813
|
export {
|
|
820
814
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link OctagonX} instead. This alias will be removed in v1.0 */
|
|
821
815
|
default as XOctagon
|
|
822
816
|
} from '../icons/octagon-x';
|
|
823
817
|
|
|
818
|
+
// OctagonPause aliases
|
|
819
|
+
export {
|
|
820
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link OctagonPause} instead. This alias will be removed in v1.0 */
|
|
821
|
+
default as PauseOctagon
|
|
822
|
+
} from '../icons/octagon-pause';
|
|
823
|
+
|
|
824
824
|
// PaintbrushVertical aliases
|
|
825
825
|
export {
|
|
826
826
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link PaintbrushVertical} instead. This alias will be removed in v1.0 */
|
|
@@ -1091,18 +1091,18 @@ export {
|
|
|
1091
1091
|
default as ChevronLeftSquare
|
|
1092
1092
|
} from '../icons/square-chevron-left';
|
|
1093
1093
|
|
|
1094
|
-
// SquareChevronRight aliases
|
|
1095
|
-
export {
|
|
1096
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareChevronRight} instead. This alias will be removed in v1.0 */
|
|
1097
|
-
default as ChevronRightSquare
|
|
1098
|
-
} from '../icons/square-chevron-right';
|
|
1099
|
-
|
|
1100
1094
|
// SquareChevronUp aliases
|
|
1101
1095
|
export {
|
|
1102
1096
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareChevronUp} instead. This alias will be removed in v1.0 */
|
|
1103
1097
|
default as ChevronUpSquare
|
|
1104
1098
|
} from '../icons/square-chevron-up';
|
|
1105
1099
|
|
|
1100
|
+
// SquareChevronRight aliases
|
|
1101
|
+
export {
|
|
1102
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareChevronRight} instead. This alias will be removed in v1.0 */
|
|
1103
|
+
default as ChevronRightSquare
|
|
1104
|
+
} from '../icons/square-chevron-right';
|
|
1105
|
+
|
|
1106
1106
|
// SquareCode aliases
|
|
1107
1107
|
export {
|
|
1108
1108
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareCode} instead. This alias will be removed in v1.0 */
|
|
@@ -1265,18 +1265,18 @@ 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 */
|