sveltekit-ui 1.0.62 → 1.0.64

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.
@@ -874,7 +874,7 @@ export function create_content_manager(config) {
874
874
  children: children_res?.children,
875
875
  }
876
876
  } else {
877
- console.log("else", deep_copy(val_loc))
877
+ // console.log("else", deep_copy(val_loc))
878
878
  }
879
879
  }
880
880
 
@@ -110,7 +110,7 @@ export function create_qr_input_manager(config) {
110
110
  val: config?.val?.corner_color ?? null,
111
111
  })
112
112
  background_color_manager = create_color_input_manager({
113
- is_show_opacity: false,
113
+ is_show_opacity: true,
114
114
  l_options: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16],
115
115
  val: config?.val?.background_color ?? null,
116
116
  })
@@ -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.64",
4
4
  "description": "A SvelteKit UI component library for building modern web applications",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -19,15 +19,15 @@
19
19
  "dependencies": {
20
20
  "context-filter-polyfill": "^0.3.23",
21
21
  "qr-code-styling": "^1.9.2",
22
- "svelte": "^5.38.10"
22
+ "svelte": "^5.39.1"
23
23
  },
24
24
  "peerDependencies": {
25
25
  "@sveltejs/kit": "^2.22.2"
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.42.1",
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",
@@ -874,7 +874,7 @@ export function create_content_manager(config) {
874
874
  children: children_res?.children,
875
875
  }
876
876
  } else {
877
- console.log("else", deep_copy(val_loc))
877
+ // console.log("else", deep_copy(val_loc))
878
878
  }
879
879
  }
880
880
 
@@ -110,7 +110,7 @@ export function create_qr_input_manager(config) {
110
110
  val: config?.val?.corner_color ?? null,
111
111
  })
112
112
  background_color_manager = create_color_input_manager({
113
- is_show_opacity: false,
113
+ is_show_opacity: true,
114
114
  l_options: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16],
115
115
  val: config?.val?.background_color ?? null,
116
116
  })
@@ -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