sveltekit-ui 1.0.61 → 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
|
|
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/dist/client/index.js
CHANGED
|
@@ -1,6 +1,18 @@
|
|
|
1
1
|
export * from "./types/index.js"
|
|
2
2
|
export * from "./astc_formatting/index.js"
|
|
3
|
-
export
|
|
3
|
+
export {
|
|
4
|
+
time_formats,
|
|
5
|
+
granularities,
|
|
6
|
+
month_names,
|
|
7
|
+
days_of_week_names,
|
|
8
|
+
common_timezones,
|
|
9
|
+
period_iso_8601_to_period_full,
|
|
10
|
+
total_seconds_to_period_full,
|
|
11
|
+
period_full_parts_to_full,
|
|
12
|
+
get_time_full_from_object,
|
|
13
|
+
get_time_object_from_val,
|
|
14
|
+
get_val_from_time_object,
|
|
15
|
+
} from "../Components/TimeInput/index.js"
|
|
4
16
|
export { intersection_observer } from "../actions/index.js"
|
|
5
17
|
|
|
6
18
|
export function format_date(date, is_add_zero = false) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sveltekit-ui",
|
|
3
|
-
"version": "1.0.
|
|
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.
|
|
30
|
-
"@sveltejs/package": "^2.5.
|
|
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
|
|
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/src/lib/client/index.js
CHANGED
|
@@ -1,6 +1,18 @@
|
|
|
1
1
|
export * from "./types/index.js"
|
|
2
2
|
export * from "./astc_formatting/index.js"
|
|
3
|
-
export
|
|
3
|
+
export {
|
|
4
|
+
time_formats,
|
|
5
|
+
granularities,
|
|
6
|
+
month_names,
|
|
7
|
+
days_of_week_names,
|
|
8
|
+
common_timezones,
|
|
9
|
+
period_iso_8601_to_period_full,
|
|
10
|
+
total_seconds_to_period_full,
|
|
11
|
+
period_full_parts_to_full,
|
|
12
|
+
get_time_full_from_object,
|
|
13
|
+
get_time_object_from_val,
|
|
14
|
+
get_val_from_time_object,
|
|
15
|
+
} from "$lib/Components/TimeInput/index.js"
|
|
4
16
|
export { intersection_observer } from "$lib/actions/index.js"
|
|
5
17
|
|
|
6
18
|
export function format_date(date, is_add_zero = false) {
|