@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.
@@ -17,7 +17,6 @@
17
17
  .card {
18
18
  width: 100%;
19
19
  background: #fff;
20
- margin-bottom: 24px;
21
20
  border-radius: 16px;
22
21
  box-shadow:
23
22
  0px 1px 16px rgba(107, 113, 128, 0.1),
@@ -23,7 +23,12 @@
23
23
  </li>
24
24
  </ul>
25
25
  <ul class="legal">
26
- <li>Privacy Supplement - Cloud Control Platform</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: 96px;
40
+ gap: 50px;
36
41
  align-items: center;
37
42
  justify-content: center;
38
- padding: 24px;
43
+ padding: 10px;
39
44
  color: white;
40
45
  }
41
46
 
42
47
  .logo-image {
43
- width: 192px;
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: 4px;
55
+ gap: 3px;
56
+ font-size: 14px;
51
57
  }
52
58
 
53
59
  .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 {
@@ -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
- <a href={profileUrl} title="Profile">
91
- <HeaderAccount {accountName} {userName} />
92
- </a>
88
+ <HeaderAccount {accountName} {userName} />
93
89
  {/if}
94
90
  </nav>
95
91
  </div>
@@ -7,7 +7,6 @@ interface HeaderProps {
7
7
  hideNotification?: boolean;
8
8
  accountName?: string;
9
9
  userName?: string;
10
- profileUrl?: string;
11
10
  hideLoader?: boolean;
12
11
  menu?: Snippet<[showMenu: boolean]>;
13
12
  waffle?: Snippet<[showWaffle: boolean]>;
@@ -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={['home-title', hasSingleItem && 'centered']}>
12
+ <h1 class="home-title">
16
13
  {title}
17
14
  </h1>
18
15
 
19
- <section class={['home-container', hasSingleItem && 'centered', hasManyItems && 'grid']}>
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: 36px;
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;
@@ -41,7 +41,7 @@
41
41
  top: 0;
42
42
  left: 0;
43
43
  background-color: rgba(255, 255, 255, 0.8);
44
- z-index: 99;
44
+ z-index: 1000;
45
45
  }
46
46
 
47
47
  .spinner {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@softwareone/spi-sv5-library",
3
- "version": "1.5.1",
3
+ "version": "1.5.3",
4
4
  "description": "Svelte components",
5
5
  "keywords": [
6
6
  "svelte",