@softwareone/spi-sv5-library 1.5.0 → 1.5.2
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.
|
@@ -23,7 +23,12 @@
|
|
|
23
23
|
</li>
|
|
24
24
|
</ul>
|
|
25
25
|
<ul class="legal">
|
|
26
|
-
<li>
|
|
26
|
+
<li>
|
|
27
|
+
Shared Platform & Integrations - <a
|
|
28
|
+
href="mailto:servicedesk@softwareone.com"
|
|
29
|
+
title="servicedesk@softwareone.com">servicedesk@softwareone.com</a
|
|
30
|
+
>
|
|
31
|
+
</li>
|
|
27
32
|
<li>© 2025 SoftwareOne. All rights reserved</li>
|
|
28
33
|
</ul>
|
|
29
34
|
</div>
|
|
@@ -32,22 +37,24 @@
|
|
|
32
37
|
.footer-section {
|
|
33
38
|
background-color: #25282d;
|
|
34
39
|
display: flex;
|
|
35
|
-
gap:
|
|
40
|
+
gap: 50px;
|
|
36
41
|
align-items: center;
|
|
37
42
|
justify-content: center;
|
|
38
|
-
padding:
|
|
43
|
+
padding: 10px;
|
|
39
44
|
color: white;
|
|
40
45
|
}
|
|
41
46
|
|
|
42
47
|
.logo-image {
|
|
43
|
-
width:
|
|
48
|
+
width: 80px;
|
|
44
49
|
}
|
|
45
50
|
|
|
46
51
|
.footer-section .links,
|
|
47
52
|
.footer-section .legal {
|
|
48
53
|
display: flex;
|
|
49
54
|
flex-direction: column;
|
|
50
|
-
gap:
|
|
55
|
+
gap: 3px;
|
|
56
|
+
font-size: 12px;
|
|
57
|
+
letter-spacing: 1px;
|
|
51
58
|
}
|
|
52
59
|
|
|
53
60
|
.footer-section a:hover {
|
|
@@ -61,6 +61,7 @@
|
|
|
61
61
|
addToast({ message: 'There was an unexpected error.', type: 'danger' });
|
|
62
62
|
onfailure?.(result.status, result.error);
|
|
63
63
|
}
|
|
64
|
+
isLoading = false;
|
|
64
65
|
};
|
|
65
66
|
|
|
66
67
|
const {
|
|
@@ -144,7 +145,6 @@
|
|
|
144
145
|
<Spinner show={isLoading} />
|
|
145
146
|
|
|
146
147
|
<form
|
|
147
|
-
class="w-full"
|
|
148
148
|
id="form"
|
|
149
149
|
method="POST"
|
|
150
150
|
action="?/{action}"
|
|
@@ -153,3 +153,9 @@
|
|
|
153
153
|
>
|
|
154
154
|
{@render children()}
|
|
155
155
|
</form>
|
|
156
|
+
|
|
157
|
+
<style>
|
|
158
|
+
form {
|
|
159
|
+
width: 100%;
|
|
160
|
+
}
|
|
161
|
+
</style>
|
|
@@ -13,7 +13,6 @@
|
|
|
13
13
|
hideNotification?: boolean;
|
|
14
14
|
accountName?: string;
|
|
15
15
|
userName?: string;
|
|
16
|
-
profileUrl?: string;
|
|
17
16
|
hideLoader?: boolean;
|
|
18
17
|
menu?: Snippet<[showMenu: boolean]>;
|
|
19
18
|
waffle?: Snippet<[showWaffle: boolean]>;
|
|
@@ -25,7 +24,6 @@
|
|
|
25
24
|
hideAccount,
|
|
26
25
|
accountName = '',
|
|
27
26
|
userName = '',
|
|
28
|
-
profileUrl = '/profile',
|
|
29
27
|
hideLoader,
|
|
30
28
|
menu,
|
|
31
29
|
waffle
|
|
@@ -87,9 +85,7 @@
|
|
|
87
85
|
|
|
88
86
|
<nav class="header-section">
|
|
89
87
|
{#if !hideAccount}
|
|
90
|
-
<
|
|
91
|
-
<HeaderAccount {accountName} {userName} />
|
|
92
|
-
</a>
|
|
88
|
+
<HeaderAccount {accountName} {userName} />
|
|
93
89
|
{/if}
|
|
94
90
|
</nav>
|
|
95
91
|
</div>
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
|
|
32
32
|
<style>
|
|
33
33
|
.item {
|
|
34
|
-
height:
|
|
34
|
+
min-height: 28px;
|
|
35
35
|
padding: 8px;
|
|
36
36
|
border-radius: 8px;
|
|
37
37
|
justify-content: flex-start;
|
|
@@ -54,7 +54,6 @@
|
|
|
54
54
|
}
|
|
55
55
|
|
|
56
56
|
.icon-span {
|
|
57
|
-
padding: 8px;
|
|
58
57
|
color: black;
|
|
59
58
|
font-size: 20px;
|
|
60
59
|
font-weight: 400;
|