geomui 0.5.58 → 0.5.61
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.
- package/dist/Drawing.svelte.d.ts +3 -2
- package/dist/DrawingList.svelte.d.ts +3 -2
- package/dist/InputParams.svelte.d.ts +3 -2
- package/dist/LocStorRead.svelte.d.ts +3 -2
- package/dist/LocStorTable.svelte.d.ts +3 -2
- package/dist/LocStorWrite.svelte.d.ts +3 -2
- package/dist/ModalDiag.svelte.d.ts +3 -2
- package/dist/ModalImg.svelte.d.ts +3 -2
- package/dist/OneDesign.svelte.d.ts +3 -2
- package/dist/ParamDrawExport.svelte.d.ts +3 -2
- package/dist/SimpleDrawing.svelte.d.ts +3 -2
- package/dist/SubDesign.svelte.d.ts +3 -2
- package/dist/TimeControl.svelte.d.ts +3 -2
- package/dist/ZoomControl.svelte.d.ts +3 -2
- package/package.json +22 -22
package/dist/Drawing.svelte.d.ts
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
import type { Figure, tSimTime } from 'geometrix';
|
|
2
|
-
|
|
2
|
+
interface Props {
|
|
3
3
|
pDefSim: tSimTime;
|
|
4
4
|
pFig: Figure;
|
|
5
5
|
simTime?: number;
|
|
6
|
-
}
|
|
6
|
+
}
|
|
7
|
+
declare const Drawing: import("svelte").Component<Props, {}, "simTime">;
|
|
7
8
|
type Drawing = ReturnType<typeof Drawing>;
|
|
8
9
|
export default Drawing;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import type { tParamDef } from 'geometrix';
|
|
2
|
-
|
|
2
|
+
interface Props {
|
|
3
3
|
pDef: tParamDef;
|
|
4
|
-
}
|
|
4
|
+
}
|
|
5
|
+
declare const DrawingList: import("svelte").Component<Props, {}, "">;
|
|
5
6
|
type DrawingList = ReturnType<typeof DrawingList>;
|
|
6
7
|
export default DrawingList;
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import type { tParamDef, Figure } from 'geometrix';
|
|
2
|
-
|
|
2
|
+
interface Props {
|
|
3
3
|
pDef: tParamDef;
|
|
4
4
|
pFig: Figure;
|
|
5
|
-
}
|
|
5
|
+
}
|
|
6
|
+
declare const InputParams: import("svelte").Component<Props, {}, "">;
|
|
6
7
|
type InputParams = ReturnType<typeof InputParams>;
|
|
7
8
|
export default InputParams;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
|
|
1
|
+
interface Props {
|
|
2
2
|
pageName: string;
|
|
3
3
|
storeName: string;
|
|
4
|
-
}
|
|
4
|
+
}
|
|
5
|
+
declare const LocStorRead: import("svelte").Component<Props, {}, "storeName">;
|
|
5
6
|
type LocStorRead = ReturnType<typeof LocStorRead>;
|
|
6
7
|
export default LocStorRead;
|
|
@@ -1,7 +1,8 @@
|
|
|
1
|
-
|
|
1
|
+
interface Props {
|
|
2
2
|
pageName: string;
|
|
3
3
|
storeName: string;
|
|
4
4
|
localKeys: string[];
|
|
5
|
-
}
|
|
5
|
+
}
|
|
6
|
+
declare const LocStorTable: import("svelte").Component<Props, {}, "storeName" | "localKeys">;
|
|
6
7
|
type LocStorTable = ReturnType<typeof LocStorTable>;
|
|
7
8
|
export default LocStorTable;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
|
|
1
|
+
interface Props {
|
|
2
2
|
pageName: string;
|
|
3
3
|
storeName: string;
|
|
4
|
-
}
|
|
4
|
+
}
|
|
5
|
+
declare const LocStorWrite: import("svelte").Component<Props, {}, "storeName">;
|
|
5
6
|
type LocStorWrite = ReturnType<typeof LocStorWrite>;
|
|
6
7
|
export default LocStorWrite;
|
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
type tOkFunc = () => void;
|
|
2
2
|
export type { tOkFunc };
|
|
3
3
|
import type { Snippet } from 'svelte';
|
|
4
|
-
|
|
4
|
+
interface Props {
|
|
5
5
|
okName?: string;
|
|
6
6
|
okFunc: tOkFunc;
|
|
7
7
|
modalOpen: boolean;
|
|
8
8
|
sizeLarge?: boolean;
|
|
9
9
|
children: Snippet;
|
|
10
|
-
}
|
|
10
|
+
}
|
|
11
|
+
declare const ModalDiag: import("svelte").Component<Props, {}, "modalOpen">;
|
|
11
12
|
type ModalDiag = ReturnType<typeof ModalDiag>;
|
|
12
13
|
export default ModalDiag;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
|
|
1
|
+
interface Props {
|
|
2
2
|
svgPath: string;
|
|
3
3
|
modalOpen: boolean;
|
|
4
|
-
}
|
|
4
|
+
}
|
|
5
|
+
declare const ModalImg: import("svelte").Component<Props, {}, "modalOpen">;
|
|
5
6
|
type ModalImg = ReturnType<typeof ModalImg>;
|
|
6
7
|
export default ModalImg;
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import type { tPageDef, tAllLink } from 'geometrix';
|
|
2
|
-
|
|
2
|
+
interface Props {
|
|
3
3
|
pageDef: tPageDef;
|
|
4
4
|
pLink: tAllLink;
|
|
5
|
-
}
|
|
5
|
+
}
|
|
6
|
+
declare const OneDesign: import("svelte").Component<Props, {}, "">;
|
|
6
7
|
type OneDesign = ReturnType<typeof OneDesign>;
|
|
7
8
|
export default OneDesign;
|
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
import type { tParamDef, tGeomFunc, tAllLink } from 'geometrix';
|
|
2
|
-
|
|
2
|
+
interface Props {
|
|
3
3
|
pDef: tParamDef;
|
|
4
4
|
fgeom: tGeomFunc;
|
|
5
5
|
pLink: tAllLink;
|
|
6
|
-
}
|
|
6
|
+
}
|
|
7
|
+
declare const ParamDrawExport: import("svelte").Component<Props, {}, "">;
|
|
7
8
|
type ParamDrawExport = ReturnType<typeof ParamDrawExport>;
|
|
8
9
|
export default ParamDrawExport;
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import type { Figure } from 'geometrix';
|
|
2
|
-
|
|
2
|
+
interface Props {
|
|
3
3
|
pFig: Figure;
|
|
4
4
|
full: boolean;
|
|
5
|
-
}
|
|
5
|
+
}
|
|
6
|
+
declare const SimpleDrawing: import("svelte").Component<Props, {}, "">;
|
|
6
7
|
type SimpleDrawing = ReturnType<typeof SimpleDrawing>;
|
|
7
8
|
export default SimpleDrawing;
|
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
import type { tSubDesign, tAllLink } from 'geometrix';
|
|
2
|
-
|
|
2
|
+
interface Props {
|
|
3
3
|
subD: tSubDesign;
|
|
4
4
|
origPartName: string;
|
|
5
5
|
pLink: tAllLink;
|
|
6
|
-
}
|
|
6
|
+
}
|
|
7
|
+
declare const SubDesign: import("svelte").Component<Props, {}, "">;
|
|
7
8
|
type SubDesign = ReturnType<typeof SubDesign>;
|
|
8
9
|
export default SubDesign;
|
|
@@ -1,8 +1,9 @@
|
|
|
1
|
-
|
|
1
|
+
interface Props {
|
|
2
2
|
tMax?: number;
|
|
3
3
|
tStep?: number;
|
|
4
4
|
tUpdate?: number;
|
|
5
5
|
simTime?: number;
|
|
6
|
-
}
|
|
6
|
+
}
|
|
7
|
+
declare const TimeControl: import("svelte").Component<Props, {}, "simTime">;
|
|
7
8
|
type TimeControl = ReturnType<typeof TimeControl>;
|
|
8
9
|
export default TimeControl;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
|
-
|
|
1
|
+
interface Props {
|
|
2
2
|
zoomClick: (action: string) => void;
|
|
3
|
-
}
|
|
3
|
+
}
|
|
4
|
+
declare const ZoomControl: import("svelte").Component<Props, {}, "">;
|
|
4
5
|
type ZoomControl = ReturnType<typeof ZoomControl>;
|
|
5
6
|
export default ZoomControl;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "geomui",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.61",
|
|
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.1.0"
|
|
71
71
|
},
|
|
72
72
|
"dependencies": {
|
|
73
|
-
"geometrix": "^0.5.
|
|
73
|
+
"geometrix": "^0.5.57"
|
|
74
74
|
},
|
|
75
75
|
"devDependencies": {
|
|
76
76
|
"@atao60/fse-cli": "^0.1.9",
|
|
77
|
-
"@sveltejs/adapter-auto": "^
|
|
78
|
-
"@sveltejs/adapter-static": "^3.0.
|
|
79
|
-
"@sveltejs/kit": "^2.
|
|
77
|
+
"@sveltejs/adapter-auto": "^4.0.0",
|
|
78
|
+
"@sveltejs/adapter-static": "^3.0.8",
|
|
79
|
+
"@sveltejs/kit": "^2.16.0",
|
|
80
80
|
"@sveltejs/package": "^2.3.7",
|
|
81
|
-
"@sveltejs/vite-plugin-svelte": "^
|
|
81
|
+
"@sveltejs/vite-plugin-svelte": "^5.0.3",
|
|
82
82
|
"@types/eslint": "^9.6.1",
|
|
83
|
-
"designix": "^0.5.
|
|
84
|
-
"eslint": "^9.
|
|
85
|
-
"eslint-config-prettier": "^
|
|
86
|
-
"eslint-plugin-svelte": "^2.46.
|
|
87
|
-
"globals": "^15.
|
|
88
|
-
"npm-run-all2": "^7.0.
|
|
89
|
-
"prettier": "^3.
|
|
90
|
-
"prettier-plugin-svelte": "^3.
|
|
91
|
-
"publint": "^0.2
|
|
83
|
+
"designix": "^0.5.58",
|
|
84
|
+
"eslint": "^9.18.0",
|
|
85
|
+
"eslint-config-prettier": "^10.0.1",
|
|
86
|
+
"eslint-plugin-svelte": "^2.46.1",
|
|
87
|
+
"globals": "^15.14.0",
|
|
88
|
+
"npm-run-all2": "^7.0.2",
|
|
89
|
+
"prettier": "^3.4.2",
|
|
90
|
+
"prettier-plugin-svelte": "^3.3.3",
|
|
91
|
+
"publint": "^0.3.2",
|
|
92
92
|
"rimraf": "^6.0.1",
|
|
93
|
-
"sass": "^1.
|
|
94
|
-
"svelte": "^5.
|
|
95
|
-
"svelte-check": "^4.
|
|
96
|
-
"typescript": "^5.
|
|
97
|
-
"typescript-eslint": "^8.
|
|
98
|
-
"vite": "^
|
|
99
|
-
"vitest": "^
|
|
93
|
+
"sass": "^1.83.4",
|
|
94
|
+
"svelte": "^5.19.0",
|
|
95
|
+
"svelte-check": "^4.1.4",
|
|
96
|
+
"typescript": "^5.7.3",
|
|
97
|
+
"typescript-eslint": "^8.20.0",
|
|
98
|
+
"vite": "^6.0.7",
|
|
99
|
+
"vitest": "^3.0.2"
|
|
100
100
|
}
|
|
101
101
|
}
|