@ycloud-web/icons-astro 0.1.0 → 0.1.2
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/README.md +4 -4
- package/package.json +1 -1
- package/src/aliases/aliases.ts +58 -58
- package/src/aliases/prefixed.ts +1018 -1018
- package/src/aliases/suffixed.ts +1518 -1518
- package/src/icons/index.ts +629 -629
package/README.md
CHANGED
|
@@ -33,19 +33,19 @@
|
|
|
33
33
|
## 安装
|
|
34
34
|
|
|
35
35
|
```sh
|
|
36
|
-
pnpm add @ycloud-web/icons-astro
|
|
36
|
+
pnpm add @ycloud-web/icons-astro@latest
|
|
37
37
|
```
|
|
38
38
|
|
|
39
39
|
```sh
|
|
40
|
-
npm install @ycloud-web/icons-astro
|
|
40
|
+
npm install @ycloud-web/icons-astro@latest
|
|
41
41
|
```
|
|
42
42
|
|
|
43
43
|
```sh
|
|
44
|
-
yarn add @ycloud-web/icons-astro
|
|
44
|
+
yarn add @ycloud-web/icons-astro@latest
|
|
45
45
|
```
|
|
46
46
|
|
|
47
47
|
```sh
|
|
48
|
-
bun add @ycloud-web/icons-astro
|
|
48
|
+
bun add @ycloud-web/icons-astro@latest
|
|
49
49
|
```
|
|
50
50
|
|
|
51
51
|
## 文档
|
package/package.json
CHANGED
package/src/aliases/aliases.ts
CHANGED
|
@@ -551,18 +551,18 @@ export {
|
|
|
551
551
|
default as FileLock2
|
|
552
552
|
} from '../icons/file-lock';
|
|
553
553
|
|
|
554
|
-
// FileMinusCorner aliases
|
|
555
|
-
export {
|
|
556
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileMinusCorner} instead. This alias will be removed in v1.0 */
|
|
557
|
-
default as FileMinus2
|
|
558
|
-
} from '../icons/file-minus-corner';
|
|
559
|
-
|
|
560
554
|
// FilePenLine aliases
|
|
561
555
|
export {
|
|
562
556
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FilePenLine} instead. This alias will be removed in v1.0 */
|
|
563
557
|
default as FileSignature
|
|
564
558
|
} from '../icons/file-pen-line';
|
|
565
559
|
|
|
560
|
+
// FileMinusCorner aliases
|
|
561
|
+
export {
|
|
562
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileMinusCorner} instead. This alias will be removed in v1.0 */
|
|
563
|
+
default as FileMinus2
|
|
564
|
+
} from '../icons/file-minus-corner';
|
|
565
|
+
|
|
566
566
|
// FilePen aliases
|
|
567
567
|
export {
|
|
568
568
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FilePen} instead. This alias will be removed in v1.0 */
|
|
@@ -623,18 +623,18 @@ export {
|
|
|
623
623
|
default as Fingerprint
|
|
624
624
|
} from '../icons/fingerprint-pattern';
|
|
625
625
|
|
|
626
|
-
// FolderCog aliases
|
|
627
|
-
export {
|
|
628
|
-
/** @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 */
|
|
629
|
-
default as FolderCog2
|
|
630
|
-
} from '../icons/folder-cog';
|
|
631
|
-
|
|
632
626
|
// FolderPen aliases
|
|
633
627
|
export {
|
|
634
628
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FolderPen} instead. This alias will be removed in v1.0 */
|
|
635
629
|
default as FolderEdit
|
|
636
630
|
} from '../icons/folder-pen';
|
|
637
631
|
|
|
632
|
+
// FolderCog aliases
|
|
633
|
+
export {
|
|
634
|
+
/** @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 */
|
|
635
|
+
default as FolderCog2
|
|
636
|
+
} from '../icons/folder-cog';
|
|
637
|
+
|
|
638
638
|
// FunnelX aliases
|
|
639
639
|
export {
|
|
640
640
|
/** @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 */
|
|
@@ -653,30 +653,24 @@ export {
|
|
|
653
653
|
default as GitCommit
|
|
654
654
|
} from '../icons/git-commit-horizontal';
|
|
655
655
|
|
|
656
|
-
// Grid2x2Check aliases
|
|
657
|
-
export {
|
|
658
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Grid2x2Check} instead. This alias will be removed in v1.0 */
|
|
659
|
-
default as Grid2X2Check
|
|
660
|
-
} from '../icons/grid-2x2-check';
|
|
661
|
-
|
|
662
656
|
// Grid2x2Plus aliases
|
|
663
657
|
export {
|
|
664
658
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Grid2x2Plus} instead. This alias will be removed in v1.0 */
|
|
665
659
|
default as Grid2X2Plus
|
|
666
660
|
} from '../icons/grid-2x2-plus';
|
|
667
661
|
|
|
662
|
+
// Grid2x2Check aliases
|
|
663
|
+
export {
|
|
664
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Grid2x2Check} instead. This alias will be removed in v1.0 */
|
|
665
|
+
default as Grid2X2Check
|
|
666
|
+
} from '../icons/grid-2x2-check';
|
|
667
|
+
|
|
668
668
|
// Grid2x2X aliases
|
|
669
669
|
export {
|
|
670
670
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Grid2x2X} instead. This alias will be removed in v1.0 */
|
|
671
671
|
default as Grid2X2X
|
|
672
672
|
} from '../icons/grid-2x2-x';
|
|
673
673
|
|
|
674
|
-
// Grid2x2 aliases
|
|
675
|
-
export {
|
|
676
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Grid2x2} instead. This alias will be removed in v1.0 */
|
|
677
|
-
default as Grid2X2
|
|
678
|
-
} from '../icons/grid-2x2';
|
|
679
|
-
|
|
680
674
|
// Grid3x3 aliases
|
|
681
675
|
export {
|
|
682
676
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Grid3x3} instead. This alias will be removed in v1.0 */
|
|
@@ -689,6 +683,12 @@ export {
|
|
|
689
683
|
default as Grid3X3
|
|
690
684
|
} from '../icons/grid-3x3';
|
|
691
685
|
|
|
686
|
+
// Grid2x2 aliases
|
|
687
|
+
export {
|
|
688
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Grid2x2} instead. This alias will be removed in v1.0 */
|
|
689
|
+
default as Grid2X2
|
|
690
|
+
} from '../icons/grid-2x2';
|
|
691
|
+
|
|
692
692
|
// HandGrab aliases
|
|
693
693
|
export {
|
|
694
694
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link HandGrab} instead. This alias will be removed in v1.0 */
|
|
@@ -755,18 +755,18 @@ export {
|
|
|
755
755
|
default as IndentIncrease
|
|
756
756
|
} from '../icons/list-indent-increase';
|
|
757
757
|
|
|
758
|
-
// LoaderCircle aliases
|
|
759
|
-
export {
|
|
760
|
-
/** @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 */
|
|
761
|
-
default as Loader2
|
|
762
|
-
} from '../icons/loader-circle';
|
|
763
|
-
|
|
764
758
|
// LockKeyholeOpen aliases
|
|
765
759
|
export {
|
|
766
760
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link LockKeyholeOpen} instead. This alias will be removed in v1.0 */
|
|
767
761
|
default as UnlockKeyhole
|
|
768
762
|
} from '../icons/lock-keyhole-open';
|
|
769
763
|
|
|
764
|
+
// LoaderCircle aliases
|
|
765
|
+
export {
|
|
766
|
+
/** @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 */
|
|
767
|
+
default as Loader2
|
|
768
|
+
} from '../icons/loader-circle';
|
|
769
|
+
|
|
770
770
|
// LockOpen aliases
|
|
771
771
|
export {
|
|
772
772
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link LockOpen} instead. This alias will be removed in v1.0 */
|
|
@@ -911,23 +911,17 @@ export {
|
|
|
911
911
|
default as Rows
|
|
912
912
|
} from '../icons/rows-2';
|
|
913
913
|
|
|
914
|
-
// Rows3 aliases
|
|
915
|
-
export {
|
|
916
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Rows3} instead. This alias will be removed in v1.0 */
|
|
917
|
-
default as PanelsTopBottom
|
|
918
|
-
} from '../icons/rows-3';
|
|
919
|
-
|
|
920
914
|
// Scale3d aliases
|
|
921
915
|
export {
|
|
922
916
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Scale3d} instead. This alias will be removed in v1.0 */
|
|
923
917
|
default as Scale3D
|
|
924
918
|
} from '../icons/scale-3d';
|
|
925
919
|
|
|
926
|
-
//
|
|
920
|
+
// Rows3 aliases
|
|
927
921
|
export {
|
|
928
|
-
/** @deprecated
|
|
929
|
-
default as
|
|
930
|
-
} from '../icons/
|
|
922
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Rows3} instead. This alias will be removed in v1.0 */
|
|
923
|
+
default as PanelsTopBottom
|
|
924
|
+
} from '../icons/rows-3';
|
|
931
925
|
|
|
932
926
|
// ShieldQuestionMark aliases
|
|
933
927
|
export {
|
|
@@ -935,6 +929,12 @@ export {
|
|
|
935
929
|
default as ShieldQuestion
|
|
936
930
|
} from '../icons/shield-question-mark';
|
|
937
931
|
|
|
932
|
+
// SendHorizontal aliases
|
|
933
|
+
export {
|
|
934
|
+
/** @deprecated Renamed because of typo, use {@link SendHorizontal} instead. This alias will be removed in v1.0 */
|
|
935
|
+
default as SendHorizonal
|
|
936
|
+
} from '../icons/send-horizontal';
|
|
937
|
+
|
|
938
938
|
// ShieldX aliases
|
|
939
939
|
export {
|
|
940
940
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ShieldX} instead. This alias will be removed in v1.0 */
|
|
@@ -1037,18 +1037,18 @@ export {
|
|
|
1037
1037
|
default as AsteriskSquare
|
|
1038
1038
|
} from '../icons/square-asterisk';
|
|
1039
1039
|
|
|
1040
|
-
// SquareBottomDashedScissors aliases
|
|
1041
|
-
export {
|
|
1042
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareBottomDashedScissors} instead. This alias will be removed in v1.0 */
|
|
1043
|
-
default as ScissorsSquareDashedBottom
|
|
1044
|
-
} from '../icons/square-bottom-dashed-scissors';
|
|
1045
|
-
|
|
1046
1040
|
// SquareCenterlineDashedHorizontal aliases
|
|
1047
1041
|
export {
|
|
1048
1042
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareCenterlineDashedHorizontal} instead. This alias will be removed in v1.0 */
|
|
1049
1043
|
default as FlipHorizontal
|
|
1050
1044
|
} from '../icons/square-centerline-dashed-horizontal';
|
|
1051
1045
|
|
|
1046
|
+
// SquareBottomDashedScissors aliases
|
|
1047
|
+
export {
|
|
1048
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareBottomDashedScissors} instead. This alias will be removed in v1.0 */
|
|
1049
|
+
default as ScissorsSquareDashedBottom
|
|
1050
|
+
} from '../icons/square-bottom-dashed-scissors';
|
|
1051
|
+
|
|
1052
1052
|
// SquareCenterlineDashedVertical aliases
|
|
1053
1053
|
export {
|
|
1054
1054
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareCenterlineDashedVertical} instead. This alias will be removed in v1.0 */
|
|
@@ -1277,18 +1277,18 @@ export {
|
|
|
1277
1277
|
default as SigmaSquare
|
|
1278
1278
|
} from '../icons/square-sigma';
|
|
1279
1279
|
|
|
1280
|
-
// SquareSlash aliases
|
|
1281
|
-
export {
|
|
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 */
|
|
1283
|
-
default as SlashSquare
|
|
1284
|
-
} from '../icons/square-slash';
|
|
1285
|
-
|
|
1286
1280
|
// SquareSplitHorizontal aliases
|
|
1287
1281
|
export {
|
|
1288
1282
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareSplitHorizontal} instead. This alias will be removed in v1.0 */
|
|
1289
1283
|
default as SplitSquareHorizontal
|
|
1290
1284
|
} from '../icons/square-split-horizontal';
|
|
1291
1285
|
|
|
1286
|
+
// SquareSlash aliases
|
|
1287
|
+
export {
|
|
1288
|
+
/** @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 */
|
|
1289
|
+
default as SlashSquare
|
|
1290
|
+
} from '../icons/square-slash';
|
|
1291
|
+
|
|
1292
1292
|
// SquareSplitVertical aliases
|
|
1293
1293
|
export {
|
|
1294
1294
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareSplitVertical} instead. This alias will be removed in v1.0 */
|
|
@@ -1319,12 +1319,6 @@ export {
|
|
|
1319
1319
|
default as XSquare
|
|
1320
1320
|
} from '../icons/square-x';
|
|
1321
1321
|
|
|
1322
|
-
// TestTubeDiagonal aliases
|
|
1323
|
-
export {
|
|
1324
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link TestTubeDiagonal} instead. This alias will be removed in v1.0 */
|
|
1325
|
-
default as TestTube2
|
|
1326
|
-
} from '../icons/test-tube-diagonal';
|
|
1327
|
-
|
|
1328
1322
|
// TextAlignCenter aliases
|
|
1329
1323
|
export {
|
|
1330
1324
|
/** @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 */
|
|
@@ -1337,6 +1331,12 @@ export {
|
|
|
1337
1331
|
default as AlignRight
|
|
1338
1332
|
} from '../icons/text-align-end';
|
|
1339
1333
|
|
|
1334
|
+
// TestTubeDiagonal aliases
|
|
1335
|
+
export {
|
|
1336
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link TestTubeDiagonal} instead. This alias will be removed in v1.0 */
|
|
1337
|
+
default as TestTube2
|
|
1338
|
+
} from '../icons/test-tube-diagonal';
|
|
1339
|
+
|
|
1340
1340
|
// TextAlignJustify aliases
|
|
1341
1341
|
export {
|
|
1342
1342
|
/** @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 */
|