Skip to content

Commit

Permalink
Merge pull request #3 from fleetbase/v0.0.4
Browse files Browse the repository at this point in the history
minor improvements
  • Loading branch information
roncodes authored Jul 19, 2024
2 parents 2b48a5c + 587a3fd commit 58e483f
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 73 deletions.
12 changes: 0 additions & 12 deletions addon/components/progress-bar.hbs

This file was deleted.

8 changes: 0 additions & 8 deletions addon/components/progress-bar.js

This file was deleted.

1 change: 1 addition & 0 deletions addon/controllers/developers/payments/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ export default class DevelopersPaymentsIndexController extends Controller {
{
label: 'Amount',
valuePath: 'locked_price',
cellComponent: 'table/cell/currency',
width: '20%',
},
{
Expand Down
28 changes: 5 additions & 23 deletions addon/templates/purchased.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -4,29 +4,11 @@
<div class="m-auto p-8">
<div class="extension-card-grid-container">
{{#each @model as |extension|}}
<div class="extension-card-container">
<div class="extension-card-icon-container">
<Image src={{extension.icon_url}} alt={{extension.name}} @fallbackSrc={{config "defaultValues.extensionIcon"}} />
</div>
<div class="extension-card-body-container">
<div class="flex flex-col">
<div class="font-semibold text-sm block">{{extension.name}}</div>
<div class="text-xs">{{n-a extension.description}}</div>
</div>
{{#if extension.is_installed}}
<Badge @status="success" @hideStatusDot={{true}} class="mt-1"><FaIcon @icon="check" class="mr-1" /> Installed</Badge>
{{/if}}
<div class="pt-1 space-y-2">
<Button
@type="default"
@text={{t "registry-bridge.common.about-extension" extensionName=extension.name}}
@icon="circle-info"
@onClick={{fn this.about extension}}
class="w-full"
/>
</div>
</div>
</div>
<ExtensionCard @extension={{extension}}>
{{#if extension.is_installed}}
<Badge @status="success" @hideStatusDot={{true}} class="mt-1"><FaIcon @icon="check" class="mr-1" /> Installed</Badge>
{{/if}}
</ExtensionCard>
{{/each}}
</div>
</div>
Expand Down
1 change: 0 additions & 1 deletion app/components/progress-bar.js

This file was deleted.

2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "fleetbase/registry-bridge",
"version": "0.0.3",
"version": "0.0.4",
"description": "Internal Bridge between Fleetbase API and Extensions Registry",
"keywords": [
"fleetbase-extension",
Expand Down
2 changes: 1 addition & 1 deletion extension.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Registry Bridge",
"version": "0.0.3",
"version": "0.0.4",
"description": "Internal Bridge between Fleetbase API and Extensions Registry",
"repository": "https://github.com/fleetbase/registry-bridge",
"license": "AGPL-3.0-or-later",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@fleetbase/registry-bridge-engine",
"version": "0.0.3",
"version": "0.0.4",
"description": "Internal Bridge between Fleetbase API and Extensions Registry",
"fleetbase": {
"route": "extensions"
Expand Down
26 changes: 0 additions & 26 deletions tests/integration/components/progress-bar-test.js

This file was deleted.

0 comments on commit 58e483f

Please sign in to comment.