@softwareone/spi-sv5-library 1.5.1 → 1.5.3
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/Card/Card.svelte +0 -1
- package/dist/Footer/Footer.svelte +11 -5
- package/dist/Form/FormController/Form.svelte +1 -0
- package/dist/Header/Header.svelte +1 -5
- package/dist/Header/Header.svelte.d.ts +0 -1
- package/dist/Home/Home.svelte +2 -16
- package/dist/Menu/MenuItem.svelte +1 -2
- package/dist/Spinner/Spinner.svelte +1 -1
- package/package.json +1 -1
package/dist/Card/Card.svelte
CHANGED
|
@@ -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,23 @@
|
|
|
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: 14px;
|
|
51
57
|
}
|
|
52
58
|
|
|
53
59
|
.footer-section a:hover {
|
|
@@ -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>
|
package/dist/Home/Home.svelte
CHANGED
|
@@ -7,16 +7,13 @@
|
|
|
7
7
|
}
|
|
8
8
|
|
|
9
9
|
let { title, homeItems }: HomeProps = $props();
|
|
10
|
-
|
|
11
|
-
const hasSingleItem: boolean = homeItems.length === 1;
|
|
12
|
-
const hasManyItems: boolean = homeItems.length > 1;
|
|
13
10
|
</script>
|
|
14
11
|
|
|
15
|
-
<h1 class=
|
|
12
|
+
<h1 class="home-title">
|
|
16
13
|
{title}
|
|
17
14
|
</h1>
|
|
18
15
|
|
|
19
|
-
<section class=
|
|
16
|
+
<section class="home-container grid">
|
|
20
17
|
{#each homeItems as homeItem}
|
|
21
18
|
<a href={homeItem.url} class="home-item">
|
|
22
19
|
<img src={homeItem.icon} alt={homeItem.text} />
|
|
@@ -36,23 +33,12 @@
|
|
|
36
33
|
font-weight: 600;
|
|
37
34
|
}
|
|
38
35
|
|
|
39
|
-
.home-title.centered {
|
|
40
|
-
display: flex;
|
|
41
|
-
justify-content: center;
|
|
42
|
-
}
|
|
43
|
-
|
|
44
36
|
.home-container {
|
|
45
37
|
--black-1: #434952;
|
|
46
38
|
--black-2: #273444;
|
|
47
39
|
--white: #fff;
|
|
48
40
|
}
|
|
49
41
|
|
|
50
|
-
.home-container.centered {
|
|
51
|
-
display: flex;
|
|
52
|
-
flex-direction: column;
|
|
53
|
-
align-items: center;
|
|
54
|
-
}
|
|
55
|
-
|
|
56
42
|
.home-container.grid {
|
|
57
43
|
display: grid;
|
|
58
44
|
gap: 24px;
|
|
@@ -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;
|