sveltekit-ui 1.0.56 → 1.0.58

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.
@@ -62,7 +62,6 @@
62
62
  position: sticky;
63
63
  top: 0;
64
64
  z-index: 1;
65
- background: var(--bg1, #fff);
66
65
  }
67
66
  .panel_scroll {
68
67
  overflow: auto;
@@ -1,6 +1,6 @@
1
1
  <script>
2
2
  import { fly } from "svelte/transition"
3
- import stop_scroll_propagation_y from "../../../../actions/stop_scroll_propagation_y"
3
+ import stop_scroll_propagation_y from "$lib/actions/stop_scroll_propagation_y"
4
4
 
5
5
  let { manager, full_nav } = $props()
6
6
  </script>
@@ -3,7 +3,7 @@
3
3
  import Button from "../Button/index.svelte"
4
4
  import LoadingWheel from "../LoadingWheel/index.svelte"
5
5
  import { slide } from "svelte/transition"
6
- import intersection_observer from "../../actions/intersection_observer.js"
6
+ import intersection_observer from "$lib/actions/intersection_observer.js"
7
7
 
8
8
  let { manager } = $props()
9
9
  </script>
@@ -6,7 +6,7 @@
6
6
  import Dropdown from "../Dropdown/index.svelte"
7
7
  import LoadingWheel from "../LoadingWheel/index.svelte"
8
8
  import { slide } from "svelte/transition"
9
- import intersection_observer from "../../actions/intersection_observer.js"
9
+ import intersection_observer from "$lib/actions/intersection_observer.js"
10
10
 
11
11
  let { manager } = $props()
12
12
  </script>
@@ -1,7 +1,7 @@
1
1
  <script>
2
2
  import LoadingWheel from "../LoadingWheel/index.svelte"
3
3
  import ErrorX from "../ErrorX/index.svelte"
4
- import intersection_observer from "../../actions/intersection_observer.js"
4
+ import intersection_observer from "$lib/actions/intersection_observer.js"
5
5
  import Button from "../Button/index.svelte"
6
6
 
7
7
  let { manager } = $props()
@@ -1,5 +1,5 @@
1
1
  <script>
2
- import intersection_observer from "../../actions/intersection_observer.js"
2
+ import intersection_observer from "$lib/actions/intersection_observer.js"
3
3
 
4
4
  let { min_square_width = 10, max_square_width = 25, min_squares_per_row = 2, content } = $props()
5
5
 
@@ -1,6 +1,6 @@
1
1
  export * from "./types/index.js"
2
2
  export * from "./astc_formatting/index.js"
3
- export * from "../Components/TimeInput/index.js"
3
+ export * from "$lib/Components/TimeInput/index.js"
4
4
 
5
5
  export function format_date(date, is_add_zero = false) {
6
6
  if (date) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sveltekit-ui",
3
- "version": "1.0.56",
3
+ "version": "1.0.58",
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.0",
30
- "@sveltejs/package": "^2.5.0",
29
+ "@sveltejs/kit": "^2.39.1",
30
+ "@sveltejs/package": "^2.5.1",
31
31
  "@sveltejs/vite-plugin-svelte": "^6.2.0",
32
32
  "@vercel/analytics": "^1.5.0",
33
33
  "typescript": "^5.9.2",
@@ -62,7 +62,6 @@
62
62
  position: sticky;
63
63
  top: 0;
64
64
  z-index: 1;
65
- background: var(--bg1, #fff);
66
65
  }
67
66
  .panel_scroll {
68
67
  overflow: auto;
@@ -278,15 +278,9 @@ below are the docs for each component individually
278
278
  .container {
279
279
  margin: auto;
280
280
  padding: 0 2rem 10rem 2rem;
281
- max-width: 60rem;
281
+ max-width: 70rem;
282
282
  }
283
283
  p {
284
284
  margin-top: 2rem;
285
285
  }
286
- code {
287
- background-color: var(--shadow2-t);
288
- border-radius: 0.5rem;
289
- padding: 0.5rem 0.5rem 0.2rem 0.5rem;
290
- border: 1px solid var(--shadow4-t);
291
- }
292
286
  </style>