@exakt/ui 0.0.5 → 0.0.6
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.
package/dist/module.json
CHANGED
|
@@ -12,16 +12,18 @@
|
|
|
12
12
|
</div>
|
|
13
13
|
|
|
14
14
|
<div class="bar-container">
|
|
15
|
-
<e-container
|
|
15
|
+
<e-container
|
|
16
|
+
class="bar-e-container"
|
|
17
|
+
:force-full-width="true"
|
|
18
|
+
>
|
|
16
19
|
<div class="rounded bar">
|
|
17
20
|
<e-progress-linear
|
|
18
21
|
:model-value="props.loading"
|
|
19
22
|
class="md-and-up-only"
|
|
20
23
|
/>
|
|
21
24
|
<div class="bar-content">
|
|
22
|
-
|
|
23
25
|
<div class="bar-section">
|
|
24
|
-
|
|
26
|
+
<!-- Normally the logo -->
|
|
25
27
|
<div class="md-and-up-only flex-stretch">
|
|
26
28
|
<slot name="center" />
|
|
27
29
|
</div>
|
|
@@ -31,7 +33,10 @@
|
|
|
31
33
|
|
|
32
34
|
<!-- Normally the sign in button -->
|
|
33
35
|
<div class="md-and-up-only bar-section">
|
|
34
|
-
<slot
|
|
36
|
+
<slot
|
|
37
|
+
name="right"
|
|
38
|
+
class="fullwidth"
|
|
39
|
+
/>
|
|
35
40
|
</div>
|
|
36
41
|
</div>
|
|
37
42
|
</div>
|
|
@@ -1,6 +1,12 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<div
|
|
3
|
-
|
|
2
|
+
<div
|
|
3
|
+
class="container"
|
|
4
|
+
:class="{ 'no-btn-padding': noBtnPadding }"
|
|
5
|
+
>
|
|
6
|
+
<div
|
|
7
|
+
class="content"
|
|
8
|
+
:class="{ forceFullWidth }"
|
|
9
|
+
>
|
|
4
10
|
<slot />
|
|
5
11
|
</div>
|
|
6
12
|
</div>
|