sveltekit-ui 1.0.62 → 1.0.63

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.
@@ -580,7 +580,7 @@ export function astc_to_email_html(astc, options, slots_html_and_text_body) {
580
580
  return `<img style="border-radius: 10px;" width="100%" height="auto" src="${get_src(
581
581
  astc?.attributes?.src,
582
582
  astc?.attributes?.storage_id
583
- )}" alt="${astc?.attributes.alt}" ${attribute_to_string(astc?.attributes)} />`
583
+ )}" alt="${astc?.attributes?.alt ?? "unknown"}" ${attribute_to_string(astc?.attributes)} />`
584
584
  case "code":
585
585
  return `<pre><code ${astc?.attributes?.language ? `class="${astc?.attributes?.language}"` : ""}>${
586
586
  astc?.attributes?.content
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sveltekit-ui",
3
- "version": "1.0.62",
3
+ "version": "1.0.63",
4
4
  "description": "A SvelteKit UI component library for building modern web applications",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -26,8 +26,8 @@
26
26
  },
27
27
  "devDependencies": {
28
28
  "@sveltejs/adapter-vercel": "^5.10.2",
29
- "@sveltejs/kit": "^2.39.1",
30
- "@sveltejs/package": "^2.5.1",
29
+ "@sveltejs/kit": "^2.41.0",
30
+ "@sveltejs/package": "^2.5.2",
31
31
  "@sveltejs/vite-plugin-svelte": "^6.2.0",
32
32
  "@vercel/analytics": "^1.5.0",
33
33
  "typescript": "^5.9.2",
@@ -580,7 +580,7 @@ export function astc_to_email_html(astc, options, slots_html_and_text_body) {
580
580
  return `<img style="border-radius: 10px;" width="100%" height="auto" src="${get_src(
581
581
  astc?.attributes?.src,
582
582
  astc?.attributes?.storage_id
583
- )}" alt="${astc?.attributes.alt}" ${attribute_to_string(astc?.attributes)} />`
583
+ )}" alt="${astc?.attributes?.alt ?? "unknown"}" ${attribute_to_string(astc?.attributes)} />`
584
584
  case "code":
585
585
  return `<pre><code ${astc?.attributes?.language ? `class="${astc?.attributes?.language}"` : ""}>${
586
586
  astc?.attributes?.content