@sellout/ui 0.0.14 → 0.0.16
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/components/Icon.d.ts +31 -21
- package/build/components/Icons.d.ts +31 -21
- package/build/components/Loader.d.ts +2 -0
- package/build/index.d.ts +31 -21
- package/build/index.es.js +52 -39
- package/build/index.js +37 -24
- package/package.json +7 -4
- package/src/components/Icons.ts +203 -185
- package/src/components/Loader.tsx +5 -1
- package/utils/generateIconLibrary.js +19 -5
- package/utils/icon-library.csv +107 -98
|
@@ -1,6 +1,18 @@
|
|
|
1
|
-
const
|
|
1
|
+
const fs = require('fs-extra');
|
|
2
|
+
// const csvFilePath = __basedir + './icon-library.csv';
|
|
2
3
|
const csv = require('csvtojson');
|
|
3
4
|
|
|
5
|
+
const csvFilePath = process.argv[2]
|
|
6
|
+
const outputFile = process.argv[3];
|
|
7
|
+
|
|
8
|
+
if(!csvFilePath || !outputFile) {
|
|
9
|
+
console.log('Error: Please specify a CSV file and output file to generate icons.')
|
|
10
|
+
console.log('Useage: node generateIconLibrary.js path-to-icon-csv-file.csv path-to-output-file.ts');
|
|
11
|
+
process.exit(0);
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
console.log(csvFilePath);
|
|
15
|
+
|
|
4
16
|
csv()
|
|
5
17
|
.fromFile(csvFilePath)
|
|
6
18
|
.then((jsonObj) => {
|
|
@@ -23,15 +35,17 @@ csv()
|
|
|
23
35
|
}, {});
|
|
24
36
|
|
|
25
37
|
let importText = '';
|
|
26
|
-
let exportText = 'export
|
|
38
|
+
let exportText = 'export const IconEnum = {';
|
|
27
39
|
|
|
28
40
|
Object.values(icons).flat().forEach((icon) => {
|
|
29
41
|
importText += icon.import + '\n';
|
|
30
|
-
exportText += icon.export + '
|
|
42
|
+
exportText += '\n ' + icon.export + ',';
|
|
31
43
|
})
|
|
32
|
-
exportText += '}'
|
|
44
|
+
exportText += '\n};\n';
|
|
33
45
|
|
|
34
|
-
|
|
46
|
+
const finalText = `${importText}\n${exportText}`;
|
|
47
|
+
return finalText
|
|
35
48
|
})
|
|
49
|
+
.then(async (finalText) => await fs.writeFile(outputFile, finalText, 'utf8'))
|
|
36
50
|
.catch(e => console.error(e));
|
|
37
51
|
|
package/utils/icon-library.csv
CHANGED
|
@@ -1,98 +1,107 @@
|
|
|
1
|
-
Name,
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
1
|
+
Icon,Name,Library,Weight,FA Name
|
|
2
|
+
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/cc-amex-brands.svg,Amex,Brands,,faCcAmex
|
|
3
|
+
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/analytics-light.svg,AnalyticsLight,Pro,Light,FaAnalytics
|
|
4
|
+
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/analytics-solid.svg,AnalyticsSolid,Pro,Solid,FaAnalytics
|
|
5
|
+
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/user-friends-regular.svg,AudienceRegular,Pro,Regular,faUserFriends
|
|
6
|
+
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/user-friends-solid.svg,AudienceSolid,Free,Solid,faUserFriends
|
|
7
|
+
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/arrow-left-solid.svg,BackArrow,Free,Solid,faArrowLeft
|
|
8
|
+
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/bell-light.svg,BellLight,Pro,Light,faBell
|
|
9
|
+
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/bold-solid.svg,Bold,Free,Solid,faBold
|
|
10
|
+
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/cash-register-regular.svg,BoxOfficeRegular,Pro,Regular,faCashRegister
|
|
11
|
+
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/cash-register-solid.svg,BoxOfficeSolid,Free,Solid,faCashRegister
|
|
12
|
+
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/bullhorn-light.svg,BullHornLight,Pro,Light,faBullhorn
|
|
13
|
+
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/bullhorn-solid.svg,BullhornSolid,Free,Solid,faBullhorn
|
|
14
|
+
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/calculator-regular.svg,CalculatorRegular,Pro,Regular,faCalculator
|
|
15
|
+
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/calculator-solid.svg,CalculatorSolid,Free,Solid,faCalculator
|
|
16
|
+
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/calendar-alt-regular.svg,Calendar,Free,Regular,faCalendarAlt
|
|
17
|
+
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/calendar-day-light.svg,CalendarDayLight,Pro,Light,faCalendarDay
|
|
18
|
+
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/calendar-day-solid.svg,CalendarDaySolid,Free,Solid,faCalendarDay
|
|
19
|
+
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/calendar-star-light.svg,CalendarStarLight,Pro,Light,faCalendarStar
|
|
20
|
+
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/calendar-star-solid.svg,CalendarStarSolid,Pro,Solid,faCalendarStar
|
|
21
|
+
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/times-solid.svg,Cancel,Free,Solid,faTimes
|
|
22
|
+
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/times-circle-solid.svg,CancelCircle,Free,Solid,faTimesCircle
|
|
23
|
+
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/caret-down-solid.svg,CaretDown,Free,Solid,faCaretDown
|
|
24
|
+
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/money-bill-solid.svg,Cash,Free,Solid,faMoneyBill
|
|
25
|
+
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/check-regular.svg,Check,Pro,Regular,faCheck
|
|
26
|
+
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/check-circle-solid.svg,CheckCircle,Free,Solid,faCheckCircle
|
|
27
|
+
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/glass-cheers-regular.svg,Cheers,Pro,Regular,faGlassCheers
|
|
28
|
+
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/clipboard-list-regular.svg,Clipboard,Pro,Regular,faClipboardList
|
|
29
|
+
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/clock-regular.svg,Clock,Free,Regular,faClock
|
|
30
|
+
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/copy-regular_(1).svg,CopyRegular,Free,Regular,faCopy
|
|
31
|
+
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/copy-solid.svg,CopySolid,Free,Solid,faCopy
|
|
32
|
+
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/credit-card-solid.svg,CreditCardBack,Free,Solid,faCreditCard
|
|
33
|
+
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/credit-card-front-solid.svg,CreditCardFront,Pro,Solid,faCreditCardFront
|
|
34
|
+
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/crown-regular.svg,CrownRegular,Pro,Regular,faCrown
|
|
35
|
+
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/crown-solid.svg,CrownSolid,Free,Solid,faCrown
|
|
36
|
+
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/i-cursor-solid.svg,Cursor,Free,Solid,faICursor
|
|
37
|
+
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/trash-regular.svg,DeleteRegular,Pro,Regular,faTrash
|
|
38
|
+
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/trash-solid.svg,DeleteSolid,Free,Solid,faTrash
|
|
39
|
+
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/cc-discover-brands.svg,Discover,Brands,,faCcDiscover
|
|
40
|
+
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/dollar-sign-regular.svg,Dollar,Pro,Regular,faDollarSign
|
|
41
|
+
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/arrow-alt-down-regular.svg,DownArrow,Pro,Regular,faArrowAltDown
|
|
42
|
+
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/file-download-regular.svg,DownloadReport,Pro,Regular,faFileDownload
|
|
43
|
+
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/edit-regular.svg,Edit,Free,Regular,faEdit
|
|
44
|
+
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/code-regular_(1).svg,Embed,Pro,Regular,faCode
|
|
45
|
+
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/envelope-solid.svg,EnvelopeSolid,Free,Solid,faEnvelope
|
|
46
|
+
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/file-export-light.svg,ExportLight,Pro,Light,faFileExport
|
|
47
|
+
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/eye-regular.svg,EyeRegular,Free,Regular,faEye
|
|
48
|
+
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/eye-slash-regular_(1).svg,EyeSlashRegular,Free,Regular,faEyeSlash
|
|
49
|
+
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/eye-solid.svg,EyeSolid,Free,Solid,faEye
|
|
50
|
+
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/usd-square-regular.svg,FeeRegular,Pro,Regular,faUsdSquare
|
|
51
|
+
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/usd-square-solid.svg,FeeSolid,Pro,Solid,faUsdSquare
|
|
52
|
+
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/filter-light.svg,FilterLight,Pro,Light,faFilter
|
|
53
|
+
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/filter-regular.svg,FilterRegular,Pro,Regular,faFilter
|
|
54
|
+
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/globe-americas-regular.svg,GlobeRegular,Pro,Regular,faGlobeAmericas
|
|
55
|
+
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/chart-line-regular.svg,GraphGrowth,Pro,Regular,faChartLine
|
|
56
|
+
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/question-circle-light.svg,HelpLight,Pro,Light,faQuestionCircle
|
|
57
|
+
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/question-circle-solid.svg,HelpSolid,Free,Solid,faQuestionCircle
|
|
58
|
+
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/home-light.svg,HomeLight,Pro,Solid,faHome
|
|
59
|
+
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/home-solid.svg,HomeSolid,Free,Solid,faHome
|
|
60
|
+
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/italic-solid.svg,Italic,Free,Solid,faItalic
|
|
61
|
+
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/key-skeleton-regular.svg,KeyRegular,Pro,Regular,faKeySkeleton
|
|
62
|
+
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/key-skeleton-solid.svg,KeySolid,Pro,Solid,faKeySkeleton
|
|
63
|
+
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/chevron-left-regular.svg,LeftChevron,Pro,Regular,faChevronLeft
|
|
64
|
+
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/link-regular.svg,Link,Pro,Regular,faLink
|
|
65
|
+
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/long-arrow-right-solid.svg,LongRightArrow,Pro,Solid,faLongArrowRight
|
|
66
|
+
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/map-marker-alt-light.svg,mapPinLight,Pro,Light,faMapMarkerAlt
|
|
67
|
+
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/cc-mastercard-brands.svg,Mastercard,Brands,,faCcMastercard
|
|
68
|
+
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/microphone-alt-light.svg,MicrophoneLight,Pro,Light,faMicrophoneAlt
|
|
69
|
+
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/microphone-alt-solid.svg,MicrophoneSolid,Free,Solid,faMicrophoneAlt
|
|
70
|
+
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/minus-circle-light.svg,MinusCircleLight,Pro,Light,faMinusCircle
|
|
71
|
+
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/mobile-alt-solid.svg,Mobile,Free,Solid,faMobileAlt
|
|
72
|
+
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/plus-circle-solid.svg,PlusCircle,Free,Solid,faPlusCircle
|
|
73
|
+
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/plus-circle-light.svg,PlusCircleLight,Pro,Light,faPlusCircle
|
|
74
|
+
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/print-regular.svg,PrintRegular,Pro,Regular,faPrint
|
|
75
|
+
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/print-solid.svg,PrintSolid,Free,Solid,faPrint
|
|
76
|
+
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/receipt-light.svg,ReceiptLight,Pro,Light,faReceipt
|
|
77
|
+
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/receipt-solid.svg,ReceiptSolid,Free,Solid,faReceipt
|
|
78
|
+
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/file-chart-line-regular.svg,ReportRegular,Pro,Regular,faFileChartLine
|
|
79
|
+
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/file-chart-line-solid.svg,ReportSolid,Pro,Solid,faFileChartLine
|
|
80
|
+
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/chevron-right-solid.svg,RightChevron,Free,Solid,faChevronRight
|
|
81
|
+
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/chevron-circle-right-solid.svg,RightChevronCircle,Free,Solid,faChevronCircleRight
|
|
82
|
+
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/sad-tear-regular.svg,SadTear,Free,Regular,faSadTear
|
|
83
|
+
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/search-light.svg,SearchLight,Pro,Light,faSearch
|
|
84
|
+
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/search-regular.svg,SearchRegular,Pro,Regular,faSearch
|
|
85
|
+
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/search-solid.svg,SearchSolid,Free,Solid,faSearch
|
|
86
|
+
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/sort-solid.svg,Sort,Free,Solid,faSort
|
|
87
|
+
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/sort-alt-solid.svg,SortBy,Pro,Solid,faSortAlt
|
|
88
|
+
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/sort-alt-light.svg,SortByLight,Pro,Light,faSortAlt
|
|
89
|
+
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/ticket-alt-regular.svg,TicketRegular,Pro,Regular,faTicketAlt
|
|
90
|
+
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/ticket-alt-solid.svg,TicketSolid,Free,Solid,faTicketAlt
|
|
91
|
+
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/underline-solid.svg,Underline,Free,Solid,faUnderline
|
|
92
|
+
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/unlock-regular.svg,Unlock,Pro,Regular,faUnlock
|
|
93
|
+
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/arrow-alt-up-regular.svg,UpArrow,Pro,Regular,faArrowAltUp
|
|
94
|
+
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/arrow-alt-square-up-regular.svg,UpgradeRegular,Pro,Regular,faArrowAltSquareUp
|
|
95
|
+
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/arrow-alt-square-up-solid.svg,UpgradeSolid,Pro,Solid,faArrowAltSquareUp
|
|
96
|
+
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/upload-regular.svg,Upload,Pro,Regular,faUpload
|
|
97
|
+
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/user-circle-solid.svg,UserCircle,Free,Solid,faUserCircle
|
|
98
|
+
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/user-regular.svg,UserRegular,Free,Regular,faUser
|
|
99
|
+
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/users-light.svg,UsersLight,Pro,Light,faUsers
|
|
100
|
+
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/user-solid.svg,UserSolid,Free,Solid,faUser
|
|
101
|
+
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/users-regular.svg,UsersRegular,Pro,Regular,faUsers
|
|
102
|
+
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/users-solid.svg,UsersSolid,Free,Solid,faUsers
|
|
103
|
+
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/landmark-light.svg,VenueLight,Pro,Light,faLandmark
|
|
104
|
+
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/landmark-solid.svg,VenueSolid,Free,Solid,faLandmark
|
|
105
|
+
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/cc-visa-brands.svg,Visa,Brands,,faCcVisa
|
|
106
|
+
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/exclamation-triangle-solid.svg,Warning,Free,Solid,faExclamationTriangle
|
|
107
|
+
FontAwesome%20Library%20c273194098044eb2862e141b7e48a687/bars-solid.svg,Menu,Free,Solid,faBars
|