geomui 1.0.23 → 1.0.25

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.
@@ -13,6 +13,7 @@
13
13
  import { page } from '$app/state';
14
14
  import { base } from '$app/paths';
15
15
  import { afterNavigate } from '$app/navigation';
16
+ import { SvelteURLSearchParams } from 'svelte/reactivity';
16
17
 
17
18
  // props
18
19
  interface Props {
@@ -110,7 +111,7 @@
110
111
  }
111
112
  async function initParams2() {
112
113
  if (browser) {
113
- const searchParams = new URLSearchParams(page.url.search);
114
+ const searchParams = new SvelteURLSearchParams(page.url.search);
114
115
  const cPxUrl = 'pxUrl';
115
116
  if (searchParams.has(cPxUrl)) {
116
117
  const fUrl = searchParams.get(cPxUrl);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "geomui",
3
- "version": "1.0.23",
3
+ "version": "1.0.25",
4
4
  "description": "The svelte-library of the webapp-UI of Parametrix",
5
5
  "private": false,
6
6
  "repository": {
@@ -70,32 +70,32 @@
70
70
  "svelte": "^5.19.0"
71
71
  },
72
72
  "dependencies": {
73
- "geometrix": "^1.0.22"
73
+ "geometrix": "^1.0.24"
74
74
  },
75
75
  "devDependencies": {
76
76
  "@atao60/fse-cli": "^0.1.9",
77
- "@sveltejs/adapter-auto": "^6.0.1",
78
- "@sveltejs/adapter-static": "^3.0.8",
79
- "@sveltejs/kit": "^2.22.5",
80
- "@sveltejs/package": "^2.3.12",
81
- "@sveltejs/vite-plugin-svelte": "^6.0.0",
77
+ "@sveltejs/adapter-auto": "^6.1.0",
78
+ "@sveltejs/adapter-static": "^3.0.9",
79
+ "@sveltejs/kit": "^2.37.0",
80
+ "@sveltejs/package": "^2.5.0",
81
+ "@sveltejs/vite-plugin-svelte": "^6.1.3",
82
82
  "@types/eslint": "^9.6.1",
83
- "designix": "^1.0.22",
84
- "eslint": "^9.30.1",
85
- "eslint-config-prettier": "^10.1.5",
86
- "eslint-plugin-svelte": "^3.10.1",
83
+ "designix": "^1.0.24",
84
+ "eslint": "^9.34.0",
85
+ "eslint-config-prettier": "^10.1.8",
86
+ "eslint-plugin-svelte": "^3.11.0",
87
87
  "globals": "^16.3.0",
88
88
  "npm-run-all2": "^8.0.4",
89
89
  "prettier": "^3.6.2",
90
90
  "prettier-plugin-svelte": "^3.4.0",
91
91
  "publint": "^0.3.12",
92
92
  "rimraf": "^6.0.1",
93
- "sass": "^1.89.2",
94
- "svelte": "^5.35.5",
95
- "svelte-check": "^4.2.2",
96
- "typescript": "^5.8.3",
97
- "typescript-eslint": "^8.36.0",
98
- "vite": "^7.0.4",
93
+ "sass": "^1.91.0",
94
+ "svelte": "^5.38.6",
95
+ "svelte-check": "^4.3.1",
96
+ "typescript": "^5.9.2",
97
+ "typescript-eslint": "^8.41.0",
98
+ "vite": "^7.1.3",
99
99
  "vitest": "^3.2.4"
100
100
  }
101
101
  }