@xh/hoist 69.0.0-SNAPSHOT.1728678076307 → 69.0.0-SNAPSHOT.1728693181757
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/build/types/icon/Icon.d.ts +1 -0
- package/icon/Icon.ts +5 -0
- package/icon/index.ts +8 -0
- package/package.json +1 -1
- package/tsconfig.tsbuildinfo +1 -1
|
@@ -135,6 +135,7 @@ export declare const Icon: {
|
|
|
135
135
|
filePowerpoint(p?: IconProps): any;
|
|
136
136
|
fileText(p?: IconProps): any;
|
|
137
137
|
fileWord(p?: IconProps): any;
|
|
138
|
+
fileXml(p?: IconProps): any;
|
|
138
139
|
flag(p?: IconProps): any;
|
|
139
140
|
floppyDisk(p?: IconProps): any;
|
|
140
141
|
folder(p?: IconProps): any;
|
package/icon/Icon.ts
CHANGED
|
@@ -375,6 +375,9 @@ export const Icon = {
|
|
|
375
375
|
fileWord(p?: IconProps) {
|
|
376
376
|
return Icon.icon({...p, iconName: 'file-word'});
|
|
377
377
|
},
|
|
378
|
+
fileXml(p?: IconProps) {
|
|
379
|
+
return Icon.icon({...p, iconName: 'file-xml'});
|
|
380
|
+
},
|
|
378
381
|
flag(p?: IconProps) {
|
|
379
382
|
return Icon.icon({...p, iconName: 'flag'});
|
|
380
383
|
},
|
|
@@ -981,6 +984,8 @@ function getFileIconConfig(filename: string) {
|
|
|
981
984
|
return {factory: Icon.filePdf, className: 'xh-file-icon-pdf'};
|
|
982
985
|
case 'txt':
|
|
983
986
|
return {factory: Icon.fileText};
|
|
987
|
+
case 'xml':
|
|
988
|
+
return {factory: Icon.fileXml};
|
|
984
989
|
case 'zip':
|
|
985
990
|
return {factory: Icon.fileArchive};
|
|
986
991
|
default:
|
package/icon/index.ts
CHANGED
|
@@ -110,6 +110,7 @@ import {
|
|
|
110
110
|
faFilePdf as faFilePdfLight,
|
|
111
111
|
faFilePowerpoint as faFilePowerpointLight,
|
|
112
112
|
faFileWord as faFileWordLight,
|
|
113
|
+
faFileXml as faFileXmlLight,
|
|
113
114
|
faFilter as faFilterLight,
|
|
114
115
|
faFilterSlash as faFilterSlashLight,
|
|
115
116
|
faFlag as faFlagLight,
|
|
@@ -321,6 +322,7 @@ import {
|
|
|
321
322
|
faFilePdf,
|
|
322
323
|
faFilePowerpoint,
|
|
323
324
|
faFileWord,
|
|
325
|
+
faFileXml,
|
|
324
326
|
faFilter,
|
|
325
327
|
faFilterSlash,
|
|
326
328
|
faFlag,
|
|
@@ -532,6 +534,7 @@ import {
|
|
|
532
534
|
faFilePdf as faFilePdfSolid,
|
|
533
535
|
faFilePowerpoint as faFilePowerpointSolid,
|
|
534
536
|
faFileWord as faFileWordSolid,
|
|
537
|
+
faFileXml as faFileXmlSolid,
|
|
535
538
|
faFilter as faFilterSolid,
|
|
536
539
|
faFilterSlash as faFilterSlashSolid,
|
|
537
540
|
faFlag as faFlagSolid,
|
|
@@ -744,6 +747,7 @@ import {
|
|
|
744
747
|
faFilePdf as faFilePdfThin,
|
|
745
748
|
faFilePowerpoint as faFilePowerpointThin,
|
|
746
749
|
faFileWord as faFileWordThin,
|
|
750
|
+
faFileXml as faFileXmlThin,
|
|
747
751
|
faFilter as faFilterThin,
|
|
748
752
|
faFilterSlash as faFilterSlashThin,
|
|
749
753
|
faFlag as faFlagThin,
|
|
@@ -1260,6 +1264,10 @@ library.add(
|
|
|
1260
1264
|
faFileWordLight,
|
|
1261
1265
|
faFileWordSolid,
|
|
1262
1266
|
faFileWordThin,
|
|
1267
|
+
faFileXml,
|
|
1268
|
+
faFileXmlLight,
|
|
1269
|
+
faFileXmlSolid,
|
|
1270
|
+
faFileXmlThin,
|
|
1263
1271
|
faFilter,
|
|
1264
1272
|
faFilterLight,
|
|
1265
1273
|
faFilterSolid,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xh/hoist",
|
|
3
|
-
"version": "69.0.0-SNAPSHOT.
|
|
3
|
+
"version": "69.0.0-SNAPSHOT.1728693181757",
|
|
4
4
|
"description": "Hoist add-on for building and deploying React Applications.",
|
|
5
5
|
"repository": "github:xh/hoist-react",
|
|
6
6
|
"homepage": "https://xh.io",
|