sveltekit-ui 1.0.60 → 1.0.62

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.
@@ -1,6 +1,5 @@
1
1
  <script>
2
2
  import { fly } from "svelte/transition"
3
- import stop_scroll_propagation_y from "$lib/actions/stop_scroll_propagation_y"
4
3
 
5
4
  let { manager, full_nav } = $props()
6
5
  </script>
@@ -1,6 +1,18 @@
1
1
  export * from "./types/index.js"
2
2
  export * from "./astc_formatting/index.js"
3
- export * from "$lib/Components/TimeInput/index.js"
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/dist/index.js CHANGED
@@ -114,11 +114,10 @@ export { default as Layout } from "./Components/Layout/index.svelte"
114
114
  export { create_layout_manager } from "./Components/Layout/index.svelte.js"
115
115
 
116
116
  export { default as draggable } from "./actions/draggable.js"
117
- export { default as intersection_observer } from "./actions/intersection_observer.js"
118
117
  export { default as no_spaces } from "./actions/no_spaces.js"
119
118
  export { default as numbers_only } from "./actions/numbers_only.js"
120
119
  export { default as scroll_y } from "./actions/scroll_y.js"
121
- export { default as stop_scroll_propagation_y } from "./actions/stop_scroll_propagation_y.js"
120
+ // export { default as stop_scroll_propagation_y } from "./actions/stop_scroll_propagation_y.js"
122
121
  export { default as swipe_handler } from "./actions/swipe_handler.js"
123
122
 
124
123
  export {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sveltekit-ui",
3
- "version": "1.0.60",
3
+ "version": "1.0.62",
4
4
  "description": "A SvelteKit UI component library for building modern web applications",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -1,6 +1,5 @@
1
1
  <script>
2
2
  import { fly } from "svelte/transition"
3
- import stop_scroll_propagation_y from "$lib/actions/stop_scroll_propagation_y"
4
3
 
5
4
  let { manager, full_nav } = $props()
6
5
  </script>
@@ -1,6 +1,18 @@
1
1
  export * from "./types/index.js"
2
2
  export * from "./astc_formatting/index.js"
3
- export * from "$lib/Components/TimeInput/index.js"
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) {
package/src/lib/index.js CHANGED
@@ -114,11 +114,10 @@ export { default as Layout } from "./Components/Layout/index.svelte"
114
114
  export { create_layout_manager } from "./Components/Layout/index.svelte.js"
115
115
 
116
116
  export { default as draggable } from "./actions/draggable.js"
117
- export { default as intersection_observer } from "./actions/intersection_observer.js"
118
117
  export { default as no_spaces } from "./actions/no_spaces.js"
119
118
  export { default as numbers_only } from "./actions/numbers_only.js"
120
119
  export { default as scroll_y } from "./actions/scroll_y.js"
121
- export { default as stop_scroll_propagation_y } from "./actions/stop_scroll_propagation_y.js"
120
+ // export { default as stop_scroll_propagation_y } from "./actions/stop_scroll_propagation_y.js"
122
121
  export { default as swipe_handler } from "./actions/swipe_handler.js"
123
122
 
124
123
  export {