Currencies and exchange-rate administration pages for Enso UI.
Install the package:
yarn add @enso-ui/currenciesThis package is also available through the full enso-ui workspace bundle.
- ships the currencies and exchange-rates administration page modules
- exports the
Conversionservice used to call the backend conversion endpoint - includes a reusable
Currencieswidget and the Pinia currency store helpers - ships the route modules for currencies and exchange-rates list/create/edit flows
import Conversion from '@enso-ui/currencies/src/services/Conversion';
const result = await new Conversion()
.from(1)
.to(2)
.amount(100)
.date('2026-04-20')
.handle();Currencies table page.
Import: @enso-ui/currencies/src/bulma/pages/currencies/Index.vue
Create page for a currency record.
Import: @enso-ui/currencies/src/bulma/pages/currencies/Create.vue
Edit page for an existing currency record.
Import: @enso-ui/currencies/src/bulma/pages/currencies/Edit.vue
Exchange-rates table page.
Import: @enso-ui/currencies/src/bulma/pages/exchangeRates/Index.vue
Create page for an exchange-rate record.
Import: @enso-ui/currencies/src/bulma/pages/exchangeRates/Create.vue
Edit page for an exchange-rate record.
Import: @enso-ui/currencies/src/bulma/pages/exchangeRates/Edit.vue
Fluent service object for currency conversion requests.
Import: @enso-ui/currencies/src/services/Conversion.js
Methods:
from(id)to(id)amount(value)date(value)handle()
Route group:
administration.currencies.indexadministration.currencies.createadministration.currencies.edit
Pages:
src/bulma/pages/currencies/Index.vuesrc/bulma/pages/currencies/Create.vuesrc/bulma/pages/currencies/Edit.vue
Route group:
administration.exchangeRates.indexadministration.exchangeRates.createadministration.exchangeRates.edit
Pages:
src/bulma/pages/exchangeRates/Index.vuesrc/bulma/pages/exchangeRates/Create.vuesrc/bulma/pages/exchangeRates/Edit.vue
The package ships two administration route groups: one for currencies and one for exchange rates.
The backend package provides the tables, forms, and conversion endpoint consumed by the frontend pages and the Conversion service.
are welcome. Pull requests are great, but issues are good too.
Thank you to all the people who already contributed to Enso!