hi Kevin,
For the Team License it has a limited customization.
From: https://commercial.abp.io/faq#is-source-code-included
Team: Your solution uses the modules and the themes as NuGet and NPM packages. It doesn't include their source code. In this way, you can easily upgrade these modules and themes whenever a new version is available. However, you can not get the source code of the modules and the themes.
For the commercial modules, to customize the UI, you need the *.cshtml
files to overwrite them.
See my Gist for replacing \Themes\Lepton\Layouts\Account\Default.cshtml
view
https://gist.github.com/ebicoglu/eebfbc7368b3ab1b739afdf56a293d8f
But if you need to customize other commercial parts, it's better to obtain the Business or Enterprise license.
hi @trendline,
This is the embedded resource list of the Lepton Theme. You can overwrite them, by creating your own file with the same name and putting it in the same folder.
Eg: To overwrite the Footer view, create your own _Footer.cshml
in the following path in your Web project
Themes\Lepton\Layouts\Application\_Footer.cshtml
hi,
you can use OpenID Connect.
See our demo application (Angular client), https://commercial.abp.io/demo
it calls http://9cc87abb646dbc56.demo.commercial.abp.io/.well-known/openid-configuration
then makes a request to http://9cc87abb646dbc56.demo.commercial.abp.io/connect/token
See also https://docs.abp.io/en/abp/latest/Samples/Microservice-Demo#authentication
Hi,
The demo version is an instance of ABP Commercial Angular template. We have added some custom components for demo. You can create your own demo.
There's an enum for Lepton styles. You can use it in backend
Volo.Abp.LeptonTheme.Management.LeptonStyle
To change the lepton theme style you can use appsettings.json
{
"ConnectionStrings": {
"Default": "Server=localhost;Database=TestDatabase;Trusted_Connection=True;MultipleActiveResultSets=true"
},
"Settings": {
"Volo.Abp.LeptonTheme.Layout.MenuPlacement": "Top",
"Volo.Abp.LeptonTheme.Style": "Style5",
"Volo.Abp.LeptonTheme.Layout.Boxed": "True",
"Volo.Abp.LeptonTheme.Layout.MenuStatus": "AlwaysOpened"
}
}
Alternatively you can set it in the database.
Table name: AbpSettings
| Name | Value | ProviderName |
| --- | --- | --- |
| Volo.Abp.LeptonTheme.Layout.Boxed
| True
, False
| T
|
| Volo.Abp.LeptonTheme.Layout.MenuPlacement
| Top
, Left
| T
| Volo.Abp.LeptonTheme.Style
| Style1
, Style2
, Style3
, Style4
, Style5
| T
| Volo.Abp.LeptonTheme.Layout.MenuStatus
| AlwaysOpened
or OpenOnHover
| T
hi,
I've created a gist tutorial to show how to customize the current login view https://gist.github.com/ebicoglu/eebfbc7368b3ab1b739afdf56a293d8f
there's no exact date but it's on the roadmap (short term)
This has been already addressed in https://github.com/volosoft/volo/issues/835. We're waiting a PR to resolve the issue. On the other, this library works cross-platform even with this version. All the methods we use works on Linux,Mac and Windows. It doesn't break cross-platform functionality. But anyway we'll fix that issue as soon as possible.