mirror of
https://github.com/Retropex/mempool.git
synced 2025-05-13 02:30:41 +02:00
473 lines
20 KiB
TypeScript
473 lines
20 KiB
TypeScript
import { NgModule } from '@angular/core';
|
|
import { CommonModule } from '@angular/common';
|
|
import { NgbCollapseModule, NgbTypeaheadModule } from '@ng-bootstrap/ng-bootstrap';
|
|
import { FontAwesomeModule, FaIconLibrary } from '@fortawesome/angular-fontawesome';
|
|
import { faFilter, faAngleDown, faAngleUp, faAngleRight, faAngleLeft, faBolt, faChartArea, faCogs, faCubes, faHammer, faDatabase, faExchangeAlt, faInfoCircle,
|
|
faLink, faList, faSearch, faCaretUp, faCaretDown, faTachometerAlt, faThList, faTint, faClock, faAngleDoubleDown, faSortUp, faAngleDoubleUp, faChevronDown,
|
|
faFileAlt, faRedoAlt, faArrowAltCircleRight, faExternalLinkAlt, faBook, faListUl, faDownload, faQrcode, faArrowRightArrowLeft, faArrowsRotate, faCircleLeft,
|
|
faFastForward, faWallet, faUserClock, faWrench, faUserFriends, faQuestionCircle, faHistory, faSignOutAlt, faKey, faSuitcase, faIdCardAlt, faNetworkWired, faUserCheck,
|
|
faCircleCheck, faUserCircle, faCheck, faRocket, faScaleBalanced, faHourglassStart, faHourglassHalf, faHourglassEnd, faWandMagicSparkles, faFaucetDrip, faTimeline,
|
|
faCircleXmark, faCalendarCheck, faMoneyBillTrendUp, faRobot, faShareNodes, faCreditCard, faMicroscope, faExclamationTriangle } from '@fortawesome/free-solid-svg-icons';
|
|
import { InfiniteScrollModule } from 'ngx-infinite-scroll';
|
|
import { MenuComponent } from '@components/menu/menu.component';
|
|
import { PreviewTitleComponent } from '@components/master-page-preview/preview-title.component';
|
|
import { VbytesPipe } from '@app/shared/pipes/bytes-pipe/vbytes.pipe';
|
|
import { ShortenStringPipe } from '@app/shared/pipes/shorten-string-pipe/shorten-string.pipe';
|
|
import { CeilPipe } from '@app/shared/pipes/math-ceil/math-ceil.pipe';
|
|
import { Hex2asciiPipe } from '@app/shared/pipes/hex2ascii/hex2ascii.pipe';
|
|
import { Decimal2HexPipe } from '@app/shared/pipes/decimal2hex/decimal2hex.pipe';
|
|
import { FeeRoundingPipe } from '@app/shared/pipes/fee-rounding/fee-rounding.pipe';
|
|
import { AsmStylerPipe } from '@app/shared/pipes/asm-styler/asm-styler.pipe';
|
|
import { AbsolutePipe } from '@app/shared/pipes/absolute/absolute.pipe';
|
|
import { RelativeUrlPipe } from '@app/shared/pipes/relative-url/relative-url.pipe';
|
|
import { ScriptpubkeyTypePipe } from '@app/shared/pipes/scriptpubkey-type-pipe/scriptpubkey-type.pipe';
|
|
import { BytesPipe } from '@app/shared/pipes/bytes-pipe/bytes.pipe';
|
|
import { WuBytesPipe } from '@app/shared/pipes/bytes-pipe/wubytes.pipe';
|
|
import { FiatCurrencyPipe } from '@app/shared/pipes/fiat-currency.pipe';
|
|
import { HttpErrorPipe } from '@app/shared/pipes/http-error-pipe/http-error.pipe';
|
|
import { BlockchainComponent } from '@components/blockchain/blockchain.component';
|
|
import { TimeComponent } from '@components/time/time.component';
|
|
import { ClipboardComponent } from '@components/clipboard/clipboard.component';
|
|
import { QrcodeComponent } from '@components/qrcode/qrcode.component';
|
|
import { FiatComponent } from '@app/fiat/fiat.component';
|
|
import { NgbNavModule, NgbTooltipModule, NgbPaginationModule, NgbDropdownModule } from '@ng-bootstrap/ng-bootstrap';
|
|
import { TxFeaturesComponent } from '@components/tx-features/tx-features.component';
|
|
import { TxFeeRatingComponent } from '@components/tx-fee-rating/tx-fee-rating.component';
|
|
import { ReactiveFormsModule } from '@angular/forms';
|
|
import { LanguageSelectorComponent } from '@components/language-selector/language-selector.component';
|
|
import { FiatSelectorComponent } from '@components/fiat-selector/fiat-selector.component';
|
|
import { RateUnitSelectorComponent } from '@components/rate-unit-selector/rate-unit-selector.component';
|
|
import { ThemeSelectorComponent } from '@components/theme-selector/theme-selector.component';
|
|
import { AmountSelectorComponent } from '@components/amount-selector/amount-selector.component';
|
|
import { TimezoneSelectorComponent } from '@components/timezone-selector/timezone-selector.component';
|
|
import { BrowserOnlyDirective } from '@app/shared/directives/browser-only.directive';
|
|
import { ServerOnlyDirective } from '@app/shared/directives/server-only.directive';
|
|
import { ColoredPriceDirective } from '@app/shared/directives/colored-price.directive';
|
|
import { NoSanitizePipe } from '@app/shared/pipes/no-sanitize.pipe';
|
|
import { MempoolBlocksComponent } from '@components/mempool-blocks/mempool-blocks.component';
|
|
import { BlockchainBlocksComponent } from '@components/blockchain-blocks/blockchain-blocks.component';
|
|
import { AmountComponent } from '@components/amount/amount.component';
|
|
import { RouterModule } from '@angular/router';
|
|
import { CapAddressPipe } from '@app/shared/pipes/cap-address-pipe/cap-address-pipe';
|
|
import { StartComponent } from '@components/start/start.component';
|
|
import { TransactionsListComponent } from '@components/transactions-list/transactions-list.component';
|
|
import { BlockOverviewGraphComponent } from '@components/block-overview-graph/block-overview-graph.component';
|
|
import { BlockOverviewTooltipComponent } from '@components/block-overview-tooltip/block-overview-tooltip.component';
|
|
import { BlockFiltersComponent } from '@components/block-filters/block-filters.component';
|
|
import { AddressGroupComponent } from '@components/address-group/address-group.component';
|
|
import { SearchFormComponent } from '@components/search-form/search-form.component';
|
|
import { AddressLabelsComponent } from '@components/address-labels/address-labels.component';
|
|
import { FooterComponent } from '@components/footer/footer.component';
|
|
import { AssetComponent } from '@components/asset/asset.component';
|
|
import { AssetsComponent } from '@components/assets/assets.component';
|
|
import { AssetsNavComponent } from '@components/assets/assets-nav/assets-nav.component';
|
|
import { StatusViewComponent } from '@components/status-view/status-view.component';
|
|
import { ServerHealthComponent } from '@components/server-health/server-health.component';
|
|
import { ServerStatusComponent } from '@components/server-health/server-status.component';
|
|
import { FeesBoxComponent } from '@components/fees-box/fees-box.component';
|
|
import { DifficultyComponent } from '@components/difficulty/difficulty.component';
|
|
import { DifficultyTooltipComponent } from '@components/difficulty/difficulty-tooltip.component';
|
|
import { DifficultyMiningComponent } from '@components/difficulty-mining/difficulty-mining.component';
|
|
import { BalanceWidgetComponent } from '@components/balance-widget/balance-widget.component';
|
|
import { AddressTransactionsWidgetComponent } from '@components/address-transactions-widget/address-transactions-widget.component';
|
|
import { RbfTimelineComponent } from '@components/rbf-timeline/rbf-timeline.component';
|
|
import { AccelerationTimelineComponent } from '@components/acceleration-timeline/acceleration-timeline.component';
|
|
import { RbfTimelineTooltipComponent } from '@components/rbf-timeline/rbf-timeline-tooltip.component';
|
|
import { AccelerationTimelineTooltipComponent } from '@components/acceleration-timeline/acceleration-timeline-tooltip.component';
|
|
import { PushTransactionComponent } from '@components/push-transaction/push-transaction.component';
|
|
import { TestTransactionsComponent } from '@components/test-transactions/test-transactions.component';
|
|
import { AssetsFeaturedComponent } from '@components/assets/assets-featured/assets-featured.component';
|
|
import { AssetGroupComponent } from '@components/assets/asset-group/asset-group.component';
|
|
import { AssetCirculationComponent } from '@components/asset-circulation/asset-circulation.component';
|
|
import { AmountShortenerPipe } from '@app/shared/pipes/amount-shortener.pipe';
|
|
import { DifficultyAdjustmentsTable } from '@components/difficulty-adjustments-table/difficulty-adjustments-table.components';
|
|
import { BlocksList } from '@components/blocks-list/blocks-list.component';
|
|
import { RbfList } from '@components/rbf-list/rbf-list.component';
|
|
import { StratumList } from '@components/stratum/stratum-list/stratum-list.component';
|
|
import { RewardStatsComponent } from '@components/reward-stats/reward-stats.component';
|
|
import { DataCyDirective } from '@app/data-cy.directive';
|
|
import { LoadingIndicatorComponent } from '@components/loading-indicator/loading-indicator.component';
|
|
import { IndexingProgressComponent } from '@components/indexing-progress/indexing-progress.component';
|
|
import { SvgImagesComponent } from '@components/svg-images/svg-images.component';
|
|
import { ChangeComponent } from '@components/change/change.component';
|
|
import { SatsComponent } from '@app/shared/components/sats/sats.component';
|
|
import { BtcComponent } from '@app/shared/components/btc/btc.component';
|
|
import { FeeRateComponent } from '@app/shared/components/fee-rate/fee-rate.component';
|
|
import { AddressTypeComponent } from '@app/shared/components/address-type/address-type.component';
|
|
import { AddressTextComponent } from '@app/shared/components/address-text/address-text.component';
|
|
import { TruncateComponent } from '@app/shared/components/truncate/truncate.component';
|
|
import { SearchResultsComponent } from '@components/search-form/search-results/search-results.component';
|
|
import { TimestampComponent } from '@app/shared/components/timestamp/timestamp.component';
|
|
import { ConfirmationsComponent } from '@app/shared/components/confirmations/confirmations.component';
|
|
import { ToggleComponent } from '@app/shared/components/toggle/toggle.component';
|
|
import { GeolocationComponent } from '@app/shared/components/geolocation/geolocation.component';
|
|
import { TestnetAlertComponent } from '@app/shared/components/testnet-alert/testnet-alert.component';
|
|
import { GlobalFooterComponent } from '@app/shared/components/global-footer/global-footer.component';
|
|
import { MempoolErrorComponent } from '@app/shared/components/mempool-error/mempool-error.component';
|
|
import { AccelerationsListComponent } from '@components/acceleration/accelerations-list/accelerations-list.component';
|
|
import { PendingStatsComponent } from '@components/acceleration/pending-stats/pending-stats.component';
|
|
import { AccelerationStatsComponent } from '@components/acceleration/acceleration-stats/acceleration-stats.component';
|
|
import { AccelerationSparklesComponent } from '@components/acceleration/sparkles/acceleration-sparkles.component';
|
|
import { OrdDataComponent } from '@components/ord-data/ord-data.component';
|
|
|
|
import { BlockViewComponent } from '@components/block-view/block-view.component';
|
|
import { EightBlocksComponent } from '@components/eight-blocks/eight-blocks.component';
|
|
import { MempoolBlockViewComponent } from '@components/mempool-block-view/mempool-block-view.component';
|
|
import { MempoolBlockOverviewComponent } from '@components/mempool-block-overview/mempool-block-overview.component';
|
|
import { ClockchainComponent } from '@components/clockchain/clockchain.component';
|
|
import { ClockFaceComponent } from '@components/clock-face/clock-face.component';
|
|
import { ClockComponent } from '@components/clock/clock.component';
|
|
import { CalculatorComponent } from '@components/calculator/calculator.component';
|
|
import { BitcoinsatoshisPipe } from '@app/shared/pipes/bitcoinsatoshis.pipe';
|
|
import { HttpErrorComponent } from '@app/shared/components/http-error/http-error.component';
|
|
import { TwitterWidgetComponent } from '@components/twitter-widget/twitter-widget.component';
|
|
import { FaucetComponent } from '@components/faucet/faucet.component';
|
|
import { TwitterLogin } from '@components/twitter-login/twitter-login.component';
|
|
import { BitcoinInvoiceComponent } from '@components/bitcoin-invoice/bitcoin-invoice.component';
|
|
|
|
import { OnlyVsizeDirective, OnlyWeightDirective } from '@app/shared/components/weight-directives/weight-directives';
|
|
import { GithubLogin } from '../components/github-login.component/github-login.component';
|
|
|
|
@NgModule({
|
|
declarations: [
|
|
ClipboardComponent,
|
|
TimeComponent,
|
|
QrcodeComponent,
|
|
FiatComponent,
|
|
TxFeaturesComponent,
|
|
TxFeeRatingComponent,
|
|
LanguageSelectorComponent,
|
|
FiatSelectorComponent,
|
|
ThemeSelectorComponent,
|
|
RateUnitSelectorComponent,
|
|
AmountSelectorComponent,
|
|
TimezoneSelectorComponent,
|
|
ScriptpubkeyTypePipe,
|
|
RelativeUrlPipe,
|
|
NoSanitizePipe,
|
|
Hex2asciiPipe,
|
|
AsmStylerPipe,
|
|
AbsolutePipe,
|
|
BytesPipe,
|
|
VbytesPipe,
|
|
WuBytesPipe,
|
|
CeilPipe,
|
|
ShortenStringPipe,
|
|
CapAddressPipe,
|
|
Decimal2HexPipe,
|
|
FeeRoundingPipe,
|
|
FiatCurrencyPipe,
|
|
HttpErrorPipe,
|
|
ColoredPriceDirective,
|
|
BrowserOnlyDirective,
|
|
ServerOnlyDirective,
|
|
BlockchainComponent,
|
|
BlockViewComponent,
|
|
EightBlocksComponent,
|
|
MempoolBlockViewComponent,
|
|
MempoolBlocksComponent,
|
|
BlockchainBlocksComponent,
|
|
AmountComponent,
|
|
MenuComponent,
|
|
PreviewTitleComponent,
|
|
StartComponent,
|
|
BlockOverviewGraphComponent,
|
|
BlockOverviewTooltipComponent,
|
|
BlockFiltersComponent,
|
|
TransactionsListComponent,
|
|
AddressGroupComponent,
|
|
SearchFormComponent,
|
|
AddressLabelsComponent,
|
|
FooterComponent,
|
|
AssetComponent,
|
|
AssetsComponent,
|
|
StatusViewComponent,
|
|
ServerHealthComponent,
|
|
ServerStatusComponent,
|
|
FeesBoxComponent,
|
|
DifficultyComponent,
|
|
DifficultyMiningComponent,
|
|
DifficultyTooltipComponent,
|
|
BalanceWidgetComponent,
|
|
AddressTransactionsWidgetComponent,
|
|
RbfTimelineComponent,
|
|
AccelerationTimelineComponent,
|
|
RbfTimelineTooltipComponent,
|
|
AccelerationTimelineTooltipComponent,
|
|
PushTransactionComponent,
|
|
TestTransactionsComponent,
|
|
AssetsNavComponent,
|
|
AssetsFeaturedComponent,
|
|
AssetGroupComponent,
|
|
AssetCirculationComponent,
|
|
AmountShortenerPipe,
|
|
DifficultyAdjustmentsTable,
|
|
BlocksList,
|
|
RbfList,
|
|
StratumList,
|
|
DataCyDirective,
|
|
RewardStatsComponent,
|
|
LoadingIndicatorComponent,
|
|
IndexingProgressComponent,
|
|
SvgImagesComponent,
|
|
ChangeComponent,
|
|
SatsComponent,
|
|
BtcComponent,
|
|
FeeRateComponent,
|
|
AddressTypeComponent,
|
|
AddressTextComponent,
|
|
TruncateComponent,
|
|
SearchResultsComponent,
|
|
TimestampComponent,
|
|
ConfirmationsComponent,
|
|
ToggleComponent,
|
|
GeolocationComponent,
|
|
TestnetAlertComponent,
|
|
GlobalFooterComponent,
|
|
CalculatorComponent,
|
|
BitcoinsatoshisPipe,
|
|
BlockViewComponent,
|
|
EightBlocksComponent,
|
|
MempoolBlockViewComponent,
|
|
MempoolBlockOverviewComponent,
|
|
ClockchainComponent,
|
|
ClockComponent,
|
|
ClockFaceComponent,
|
|
OnlyVsizeDirective,
|
|
OnlyWeightDirective,
|
|
MempoolErrorComponent,
|
|
AccelerationsListComponent,
|
|
AccelerationStatsComponent,
|
|
PendingStatsComponent,
|
|
AccelerationSparklesComponent,
|
|
OrdDataComponent,
|
|
HttpErrorComponent,
|
|
TwitterWidgetComponent,
|
|
FaucetComponent,
|
|
TwitterLogin,
|
|
GithubLogin,
|
|
BitcoinInvoiceComponent,
|
|
],
|
|
imports: [
|
|
CommonModule,
|
|
RouterModule,
|
|
ReactiveFormsModule,
|
|
NgbNavModule,
|
|
NgbTooltipModule,
|
|
NgbPaginationModule,
|
|
NgbTypeaheadModule,
|
|
NgbDropdownModule,
|
|
NgbCollapseModule,
|
|
InfiniteScrollModule,
|
|
FontAwesomeModule,
|
|
],
|
|
providers: [
|
|
BytesPipe,
|
|
VbytesPipe,
|
|
WuBytesPipe,
|
|
RelativeUrlPipe,
|
|
NoSanitizePipe,
|
|
ShortenStringPipe,
|
|
CapAddressPipe,
|
|
AmountShortenerPipe,
|
|
],
|
|
exports: [
|
|
MenuComponent,
|
|
RouterModule,
|
|
ReactiveFormsModule,
|
|
NgbNavModule,
|
|
NgbTooltipModule,
|
|
NgbPaginationModule,
|
|
NgbTypeaheadModule,
|
|
NgbDropdownModule,
|
|
NgbCollapseModule,
|
|
InfiniteScrollModule,
|
|
FontAwesomeModule,
|
|
TimeComponent,
|
|
ClipboardComponent,
|
|
QrcodeComponent,
|
|
FiatComponent,
|
|
TxFeaturesComponent,
|
|
TxFeeRatingComponent,
|
|
LanguageSelectorComponent,
|
|
FiatSelectorComponent,
|
|
RateUnitSelectorComponent,
|
|
ThemeSelectorComponent,
|
|
AmountSelectorComponent,
|
|
TimezoneSelectorComponent,
|
|
ScriptpubkeyTypePipe,
|
|
RelativeUrlPipe,
|
|
Hex2asciiPipe,
|
|
AsmStylerPipe,
|
|
AbsolutePipe,
|
|
BytesPipe,
|
|
VbytesPipe,
|
|
WuBytesPipe,
|
|
FiatCurrencyPipe,
|
|
HttpErrorPipe,
|
|
CeilPipe,
|
|
ShortenStringPipe,
|
|
CapAddressPipe,
|
|
Decimal2HexPipe,
|
|
FeeRoundingPipe,
|
|
ColoredPriceDirective,
|
|
BrowserOnlyDirective,
|
|
ServerOnlyDirective,
|
|
NoSanitizePipe,
|
|
BlockchainComponent,
|
|
MempoolBlocksComponent,
|
|
BlockchainBlocksComponent,
|
|
AmountComponent,
|
|
StartComponent,
|
|
BlockOverviewGraphComponent,
|
|
BlockOverviewTooltipComponent,
|
|
BlockFiltersComponent,
|
|
TransactionsListComponent,
|
|
AddressGroupComponent,
|
|
SearchFormComponent,
|
|
AddressLabelsComponent,
|
|
FooterComponent,
|
|
AssetComponent,
|
|
AssetsComponent,
|
|
StatusViewComponent,
|
|
ServerHealthComponent,
|
|
ServerStatusComponent,
|
|
FeesBoxComponent,
|
|
DifficultyComponent,
|
|
DifficultyMiningComponent,
|
|
DifficultyTooltipComponent,
|
|
BalanceWidgetComponent,
|
|
AddressTransactionsWidgetComponent,
|
|
RbfTimelineComponent,
|
|
AccelerationTimelineComponent,
|
|
RbfTimelineTooltipComponent,
|
|
AccelerationTimelineTooltipComponent,
|
|
PushTransactionComponent,
|
|
TestTransactionsComponent,
|
|
AssetsNavComponent,
|
|
AssetsFeaturedComponent,
|
|
AssetGroupComponent,
|
|
AssetCirculationComponent,
|
|
AmountShortenerPipe,
|
|
DifficultyAdjustmentsTable,
|
|
BlocksList,
|
|
StratumList,
|
|
DataCyDirective,
|
|
RewardStatsComponent,
|
|
LoadingIndicatorComponent,
|
|
IndexingProgressComponent,
|
|
SvgImagesComponent,
|
|
ChangeComponent,
|
|
SatsComponent,
|
|
BtcComponent,
|
|
FeeRateComponent,
|
|
AddressTypeComponent,
|
|
AddressTextComponent,
|
|
TruncateComponent,
|
|
SearchResultsComponent,
|
|
TimestampComponent,
|
|
ConfirmationsComponent,
|
|
ToggleComponent,
|
|
GeolocationComponent,
|
|
TestnetAlertComponent,
|
|
PreviewTitleComponent,
|
|
GlobalFooterComponent,
|
|
MempoolErrorComponent,
|
|
AccelerationsListComponent,
|
|
AccelerationStatsComponent,
|
|
PendingStatsComponent,
|
|
AccelerationSparklesComponent,
|
|
OrdDataComponent,
|
|
HttpErrorComponent,
|
|
TwitterWidgetComponent,
|
|
TwitterLogin,
|
|
GithubLogin,
|
|
BitcoinInvoiceComponent,
|
|
BitcoinsatoshisPipe,
|
|
|
|
MempoolBlockOverviewComponent,
|
|
ClockchainComponent,
|
|
ClockComponent,
|
|
ClockFaceComponent,
|
|
|
|
OnlyVsizeDirective,
|
|
OnlyWeightDirective,
|
|
]
|
|
})
|
|
export class SharedModule {
|
|
constructor(library: FaIconLibrary) {
|
|
library.addIcons(faInfoCircle);
|
|
library.addIcons(faChartArea);
|
|
library.addIcons(faClock);
|
|
library.addIcons(faTachometerAlt);
|
|
library.addIcons(faCubes);
|
|
library.addIcons(faHammer);
|
|
library.addIcons(faCogs);
|
|
library.addIcons(faThList);
|
|
library.addIcons(faList);
|
|
library.addIcons(faTachometerAlt);
|
|
library.addIcons(faDatabase);
|
|
library.addIcons(faSearch);
|
|
library.addIcons(faLink);
|
|
library.addIcons(faBolt);
|
|
library.addIcons(faTint);
|
|
library.addIcons(faFilter);
|
|
library.addIcons(faAngleDown);
|
|
library.addIcons(faAngleUp);
|
|
library.addIcons(faExchangeAlt);
|
|
library.addIcons(faAngleDoubleUp);
|
|
library.addIcons(faAngleDoubleDown);
|
|
library.addIcons(faChevronDown);
|
|
library.addIcons(faFileAlt);
|
|
library.addIcons(faRedoAlt);
|
|
library.addIcons(faArrowAltCircleRight);
|
|
library.addIcons(faArrowsRotate);
|
|
library.addIcons(faCircleLeft);
|
|
library.addIcons(faExternalLinkAlt);
|
|
library.addIcons(faSortUp);
|
|
library.addIcons(faCaretUp);
|
|
library.addIcons(faCaretDown);
|
|
library.addIcons(faAngleRight);
|
|
library.addIcons(faAngleLeft);
|
|
library.addIcons(faBook);
|
|
library.addIcons(faListUl);
|
|
library.addIcons(faDownload);
|
|
library.addIcons(faQrcode);
|
|
library.addIcons(faArrowRightArrowLeft);
|
|
library.addIcons(faExchangeAlt);
|
|
library.addIcons(faList);
|
|
library.addIcons(faFastForward);
|
|
library.addIcons(faWallet);
|
|
library.addIcons(faUserClock);
|
|
library.addIcons(faWrench);
|
|
library.addIcons(faUserFriends);
|
|
library.addIcons(faQuestionCircle);
|
|
library.addIcons(faHistory);
|
|
library.addIcons(faSignOutAlt);
|
|
library.addIcons(faKey);
|
|
library.addIcons(faSuitcase);
|
|
library.addIcons(faIdCardAlt);
|
|
library.addIcons(faNetworkWired);
|
|
library.addIcons(faUserCheck);
|
|
library.addIcons(faCircleCheck);
|
|
library.addIcons(faUserCircle);
|
|
library.addIcons(faCheck);
|
|
library.addIcons(faRocket);
|
|
library.addIcons(faScaleBalanced);
|
|
library.addIcons(faHourglassStart);
|
|
library.addIcons(faHourglassHalf);
|
|
library.addIcons(faHourglassEnd);
|
|
library.addIcons(faWandMagicSparkles);
|
|
library.addIcons(faFaucetDrip);
|
|
library.addIcons(faTimeline);
|
|
library.addIcons(faCircleXmark);
|
|
library.addIcons(faCalendarCheck);
|
|
library.addIcons(faMoneyBillTrendUp);
|
|
library.addIcons(faRobot);
|
|
library.addIcons(faShareNodes);
|
|
library.addIcons(faCreditCard);
|
|
library.addIcons(faMicroscope);
|
|
library.addIcons(faExclamationTriangle);
|
|
}
|
|
}
|