Skip to content

Commit cb43182

Browse files
authored
Merge pull request #92 from fleetbase/dev-v0.3.9
v0.3.9
2 parents 052a844 + 62eb120 commit cb43182

File tree

5 files changed

+13
-24
lines changed

5 files changed

+13
-24
lines changed

addon/components/modals/resend-verification-email.hbs

Lines changed: 4 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,9 @@
11
<Modal::Default @modalIsOpened={{@modalIsOpened}} @options={{@options}} @confirm={{@onConfirm}} @decline={{@onDecline}}>
22
<div class="modal-body-container">
3-
<div class="bg-blue-50 rounded shadow-sm border-l-4 border-blue-400 p-4 mb-5">
4-
<div class="flex">
5-
<div class="flex-shrink-0">
6-
<svg class="h-5 w-5 text-blue-400" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor" aria-hidden="true">
7-
<path
8-
fill-rule="evenodd"
9-
d="M8.257 3.099c.765-1.36 2.722-1.36 3.486 0l5.58 9.92c.75 1.334-.213 2.98-1.742 2.98H4.42c-1.53 0-2.493-1.646-1.743-2.98l5.58-9.92zM11 13a1 1 0 11-2 0 1 1 0 012 0zm-1-8a1 1 0 00-1 1v3a1 1 0 002 0V6a1 1 0 00-1-1z"
10-
clip-rule="evenodd"
11-
></path>
12-
</svg>
13-
</div>
14-
<div class="ml-3 flex items-center">
15-
<span class="font-extrabold text-blue-800">Verify your email address</span>
16-
</div>
17-
</div>
18-
<div class="py-3">
19-
<p class="text-blue-700">Re-verify your email address and click Send to continue.</p>
20-
</div>
21-
</div>
3+
<InfoBlock @type="info" @icon="lightbulb" @iconSize="lg" class="mb-5">
4+
<div class="font-extrabold">Verify your email address.</div>
5+
<div>Re-verify your email address and click Send to continue.</div>
6+
</InfoBlock>
227

238
<InputGroup
249
@type="email"

addon/components/model-coordinates-input.hbs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<CoordinatesInput
22
@value={{if @locationProperty (get @model @locationProperty) @model.location}}
3-
@onChange={{this.updatePlaceCoordinates}}
3+
@onChange={{this.updateCoordinates}}
44
@onGeocode={{this.onAutocomplete}}
55
@onUpdatedFromMap={{perform this.reverseGeocode}}
66
@onInit={{this.setCoordinatesInput}}

addon/components/tab-navigation.hbs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,15 @@
22
<div class="tab-navigation {{@containerClass}}" data-style={{or @style "github"}} data-size={{or @size "md"}}>
33
<div class="tab-list justify-between {{@tablistClass}}" role="tablist">
44
<div class="flex flex-row items-center" role="tablist">
5+
{{#if (has-block "title")}}
6+
<div id="tab-navigation-title" class="tab-navigation-title {{@tabTitleWrapperClass}}">
7+
{{yield to="title"}}
8+
</div>
9+
{{/if}}
510
{{#if (has-block "tabs")}}
611
{{yield this to="tabs"}}
712
{{else if @tabs}}
813
{{#each this.enhancedTabs as |tab|}}
9-
1014
{{#if tab.route}}
1115
<LinkTo
1216
@route={{tab.route}}

addon/styles/layout/next.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2053,15 +2053,15 @@ body[data-theme='light'] .next-table-wrapper table tfoot tr td {
20532053
}
20542054

20552055
.field-info-container > .field-name {
2056-
@apply font-semibold text-gray-700;
2056+
@apply text-[11px] tracking-wide uppercase font-semibold text-gray-700;
20572057
}
20582058

20592059
.field-info-container > .field-value {
20602060
@apply text-gray-900;
20612061
}
20622062

20632063
body[data-theme='dark'] .field-info-container > .field-name {
2064-
@apply text-gray-400;
2064+
@apply text-gray-500;
20652065
}
20662066

20672067
body[data-theme='dark'] .field-info-container > .field-value {

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@fleetbase/ember-ui",
3-
"version": "0.3.8",
3+
"version": "0.3.9",
44
"description": "Fleetbase UI provides all the interface components, helpers, services and utilities for building a Fleetbase extension into the Console.",
55
"keywords": [
66
"fleetbase-ui",

0 commit comments

Comments
 (0)