sveltekit-ui 1.0.10 → 1.0.11

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.
@@ -126,7 +126,7 @@
126
126
  </div>
127
127
  {/if}
128
128
  <div style="display: flex; gap: .5rem">
129
- {#if manager?.val}
129
+ {#if manager?.val != null}
130
130
  <p>{manager?.val}</p>
131
131
  {:else}
132
132
  <p style="color: var(--warning-t)">Null</p>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sveltekit-ui",
3
- "version": "1.0.10",
3
+ "version": "1.0.11",
4
4
  "description": "A SvelteKit UI component library for building modern web applications",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -19,19 +19,19 @@
19
19
  "dependencies": {
20
20
  "context-filter-polyfill": "^0.3.23",
21
21
  "qr-code-styling": "^1.9.2",
22
- "svelte": "^5.36.12"
22
+ "svelte": "^5.37.0"
23
23
  },
24
24
  "peerDependencies": {
25
25
  "@sveltejs/kit": "^2.22.2"
26
26
  },
27
27
  "devDependencies": {
28
- "@sveltejs/adapter-vercel": "^5.8.0",
29
- "@sveltejs/kit": "^2.25.1",
28
+ "@sveltejs/adapter-vercel": "^5.8.1",
29
+ "@sveltejs/kit": "^2.26.1",
30
30
  "@sveltejs/package": "^2.4.0",
31
31
  "@sveltejs/vite-plugin-svelte": "^6.1.0",
32
32
  "@vercel/analytics": "^1.5.0",
33
33
  "typescript": "^5.8.3",
34
- "vite": "^7.0.5"
34
+ "vite": "^7.0.6"
35
35
  },
36
36
  "homepage": "https://www.sveltekit-ui.com",
37
37
  "keywords": [
@@ -126,7 +126,7 @@
126
126
  </div>
127
127
  {/if}
128
128
  <div style="display: flex; gap: .5rem">
129
- {#if manager?.val}
129
+ {#if manager?.val != null}
130
130
  <p>{manager?.val}</p>
131
131
  {:else}
132
132
  <p style="color: var(--warning-t)">Null</p>
@@ -168,6 +168,27 @@
168
168
  {#if children}
169
169
  {@render children()}
170
170
  {/if}
171
+ <div style="display: flex; justify-content: start; padding: 1rem; margin-top: 2rem;">
172
+ <a
173
+ href="https://www.contibase.com?ref=skui"
174
+ target="_blank"
175
+ rel="noopener noreferrer"
176
+ style="display: flex; align-items: center; justify-content: center; padding: .5rem 2rem; width: fit-content; background-color: var(--g0-t); border-radius: 10px; font-family: Quicksand; text-decoration: none;"
177
+ >
178
+ <img
179
+ height="12px"
180
+ width="auto"
181
+ style="max-height: 12px; max-width: 40px; width: auto; margin-right: 10px;"
182
+ src="https://www.contibase.com/favicon.svg"
183
+ alt="icon"
184
+ />
185
+ <div style="display: flex; flex-direction: column; flex: 0;">
186
+ <span style="font-size: 1rem; line-height: 1; color: var(--g16-t)">Sponsored by </span><span
187
+ style="line-height: 1; color: oklch(var(--l12-t) var(--c12) var(--h10));">Contibase</span
188
+ >
189
+ </div>
190
+ </a>
191
+ </div>
171
192
  {/snippet}
172
193
  <!-- {#snippet additional()}
173
194
  {/snippet} -->