@fleetbase/ember-ui 0.3.8 → 0.3.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1,24 +1,9 @@
|
|
|
1
1
|
<Modal::Default @modalIsOpened={{@modalIsOpened}} @options={{@options}} @confirm={{@onConfirm}} @decline={{@onDecline}}>
|
|
2
2
|
<div class="modal-body-container">
|
|
3
|
-
<
|
|
4
|
-
<div class="
|
|
5
|
-
|
|
6
|
-
|
|
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>
|
|
22
7
|
|
|
23
8
|
<InputGroup
|
|
24
9
|
@type="email"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<CoordinatesInput
|
|
2
2
|
@value={{if @locationProperty (get @model @locationProperty) @model.location}}
|
|
3
|
-
@onChange={{this.
|
|
3
|
+
@onChange={{this.updateCoordinates}}
|
|
4
4
|
@onGeocode={{this.onAutocomplete}}
|
|
5
5
|
@onUpdatedFromMap={{perform this.reverseGeocode}}
|
|
6
6
|
@onInit={{this.setCoordinatesInput}}
|
|
@@ -2,11 +2,15 @@
|
|
|
2
2
|
<div class="tab-navigation {{@containerClass}}" data-style={{or @style "github"}} data-size={{or @size "md"}}>
|
|
3
3
|
<div class="tab-list justify-between {{@tablistClass}}" role="tablist">
|
|
4
4
|
<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}}
|
|
5
10
|
{{#if (has-block "tabs")}}
|
|
6
11
|
{{yield this to="tabs"}}
|
|
7
12
|
{{else if @tabs}}
|
|
8
13
|
{{#each this.enhancedTabs as |tab|}}
|
|
9
|
-
|
|
10
14
|
{{#if tab.route}}
|
|
11
15
|
<LinkTo
|
|
12
16
|
@route={{tab.route}}
|
|
@@ -2053,7 +2053,7 @@ body[data-theme='light'] .next-table-wrapper table tfoot tr td {
|
|
|
2053
2053
|
}
|
|
2054
2054
|
|
|
2055
2055
|
.field-info-container > .field-name {
|
|
2056
|
-
@apply font-semibold text-gray-700;
|
|
2056
|
+
@apply text-[11px] tracking-wide uppercase font-semibold text-gray-700;
|
|
2057
2057
|
}
|
|
2058
2058
|
|
|
2059
2059
|
.field-info-container > .field-value {
|
|
@@ -2061,7 +2061,7 @@ body[data-theme='light'] .next-table-wrapper table tfoot tr td {
|
|
|
2061
2061
|
}
|
|
2062
2062
|
|
|
2063
2063
|
body[data-theme='dark'] .field-info-container > .field-name {
|
|
2064
|
-
@apply text-gray-
|
|
2064
|
+
@apply text-gray-500;
|
|
2065
2065
|
}
|
|
2066
2066
|
|
|
2067
2067
|
body[data-theme='dark'] .field-info-container > .field-value {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fleetbase/ember-ui",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.9",
|
|
4
4
|
"description": "Fleetbase UI provides all the interface components, helpers, services and utilities for building a Fleetbase extension into the Console.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"fleetbase-ui",
|