@ycloud-web/icons-astro 0.1.0 → 0.1.1
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 +12 -12
- package/src/aliases/prefixed.ts +947 -947
- package/src/aliases/suffixed.ts +1487 -1487
- package/src/icons/index.ts +624 -624
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
|
@@ -467,18 +467,18 @@ export {
|
|
|
467
467
|
default as FileBadge2
|
|
468
468
|
} from '../icons/file-badge';
|
|
469
469
|
|
|
470
|
-
// FileBracesCorner aliases
|
|
471
|
-
export {
|
|
472
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileBracesCorner} instead. This alias will be removed in v1.0 */
|
|
473
|
-
default as FileJson2
|
|
474
|
-
} from '../icons/file-braces-corner';
|
|
475
|
-
|
|
476
470
|
// FileBraces aliases
|
|
477
471
|
export {
|
|
478
472
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileBraces} instead. This alias will be removed in v1.0 */
|
|
479
473
|
default as FileJson
|
|
480
474
|
} from '../icons/file-braces';
|
|
481
475
|
|
|
476
|
+
// FileBracesCorner aliases
|
|
477
|
+
export {
|
|
478
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileBracesCorner} instead. This alias will be removed in v1.0 */
|
|
479
|
+
default as FileJson2
|
|
480
|
+
} from '../icons/file-braces-corner';
|
|
481
|
+
|
|
482
482
|
// FileChartColumnIncreasing aliases
|
|
483
483
|
export {
|
|
484
484
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileChartColumnIncreasing} instead. This alias will be removed in v1.0 */
|
|
@@ -1007,18 +1007,18 @@ export {
|
|
|
1007
1007
|
default as ArrowUpRightFromSquare
|
|
1008
1008
|
} from '../icons/square-arrow-out-up-right';
|
|
1009
1009
|
|
|
1010
|
-
// SquareArrowRight aliases
|
|
1011
|
-
export {
|
|
1012
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowRight} instead. This alias will be removed in v1.0 */
|
|
1013
|
-
default as ArrowRightSquare
|
|
1014
|
-
} from '../icons/square-arrow-right';
|
|
1015
|
-
|
|
1016
1010
|
// SquareArrowUpLeft aliases
|
|
1017
1011
|
export {
|
|
1018
1012
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowUpLeft} instead. This alias will be removed in v1.0 */
|
|
1019
1013
|
default as ArrowUpLeftSquare
|
|
1020
1014
|
} from '../icons/square-arrow-up-left';
|
|
1021
1015
|
|
|
1016
|
+
// SquareArrowRight aliases
|
|
1017
|
+
export {
|
|
1018
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowRight} instead. This alias will be removed in v1.0 */
|
|
1019
|
+
default as ArrowRightSquare
|
|
1020
|
+
} from '../icons/square-arrow-right';
|
|
1021
|
+
|
|
1022
1022
|
// SquareArrowUpRight aliases
|
|
1023
1023
|
export {
|
|
1024
1024
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowUpRight} instead. This alias will be removed in v1.0 */
|