geomui 0.5.52 → 0.5.56
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 +275 -262
- package/dist/Drawing.svelte.d.ts +8 -24
- package/dist/DrawingList.svelte +38 -33
- package/dist/DrawingList.svelte.d.ts +5 -18
- package/dist/InputParams.svelte +338 -283
- package/dist/InputParams.svelte.d.ts +7 -25
- package/dist/LabelCheckbox.svelte +12 -11
- package/dist/LabelCheckbox.svelte.d.ts +16 -14
- package/dist/LocStorRead.svelte +29 -17
- package/dist/LocStorRead.svelte.d.ts +6 -19
- package/dist/LocStorTable.svelte +88 -68
- package/dist/LocStorTable.svelte.d.ts +7 -20
- package/dist/LocStorWrite.svelte +28 -22
- package/dist/LocStorWrite.svelte.d.ts +6 -19
- package/dist/ModalDiag.svelte +33 -15
- package/dist/ModalDiag.svelte.d.ts +10 -22
- package/dist/ModalImg.svelte +11 -6
- package/dist/ModalImg.svelte.d.ts +6 -19
- package/dist/OneDesign.svelte +15 -6
- package/dist/OneDesign.svelte.d.ts +6 -19
- package/dist/ParamDrawExport.svelte +220 -134
- package/dist/ParamDrawExport.svelte.d.ts +7 -20
- package/dist/SimpleDrawing.svelte +82 -49
- package/dist/SimpleDrawing.svelte.d.ts +7 -23
- package/dist/SubDesign.svelte +64 -45
- package/dist/SubDesign.svelte.d.ts +8 -21
- package/dist/TimeControl.svelte +84 -69
- package/dist/TimeControl.svelte.d.ts +8 -21
- package/dist/ZoomControl.svelte +21 -14
- package/dist/ZoomControl.svelte.d.ts +5 -18
- package/dist/initStore.js +12 -11
- package/dist/stateDrawing.svelte.d.ts +8 -0
- package/dist/stateDrawing.svelte.js +8 -0
- package/dist/stateParams.svelte.d.ts +5 -0
- package/dist/stateParams.svelte.js +3 -0
- package/package.json +21 -21
- package/dist/drawingLayers.d.ts +0 -2
- package/dist/drawingLayers.js +0 -6
- package/dist/storePVal.d.ts +0 -5
- package/dist/storePVal.js +0 -4
package/dist/SubDesign.svelte
CHANGED
|
@@ -1,62 +1,81 @@
|
|
|
1
|
-
<script
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
5
|
-
import {
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
}
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
function
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
1
|
+
<script lang="ts">
|
|
2
|
+
import type { tPosiOrien, tSubDesign, tAllLink } from 'geometrix';
|
|
3
|
+
import { ffix, radToDeg, paramListToVal } from 'geometrix';
|
|
4
|
+
//import { downloadParams, generateUrl } from './downloadParams';
|
|
5
|
+
import { downloadParams } from './downloadParams';
|
|
6
|
+
import { updateStore } from './initStore';
|
|
7
|
+
//import { page } from '$app/stores';
|
|
8
|
+
import { base } from '$app/paths';
|
|
9
|
+
import { goto } from '$app/navigation';
|
|
10
|
+
|
|
11
|
+
// props
|
|
12
|
+
interface Props {
|
|
13
|
+
subD: tSubDesign;
|
|
14
|
+
origPartName: string;
|
|
15
|
+
pLink: tAllLink;
|
|
16
|
+
}
|
|
17
|
+
let { subD, origPartName, pLink }: Props = $props();
|
|
18
|
+
|
|
19
|
+
// derived
|
|
20
|
+
const dSubInstList: string[] = $derived(Object.keys(subD));
|
|
21
|
+
|
|
22
|
+
// actions
|
|
23
|
+
async function goToUrl(subInstName: string) {
|
|
24
|
+
const subObj = subD[subInstName];
|
|
25
|
+
// modify the global store sParams
|
|
26
|
+
updateStore(subObj.partName, paramListToVal(subObj.dparam), true);
|
|
27
|
+
//const rUrl = generateUrl(`${$page.url.origin}${base}/${subObj.link}`, paramListToVal(subObj.dparam), true);
|
|
28
|
+
//const rUrl = generateUrl(`${$page.url.origin}${base}/${subObj.link}`, {}, true);
|
|
29
|
+
const rUrl = `${base}${pLink[subObj.partName]}`;
|
|
30
|
+
//const rUrl = pLink[subObj.partName];
|
|
31
|
+
//console.log(`dbg505: ${rUrl}`);
|
|
32
|
+
//window.location.assign(rUrl);
|
|
33
|
+
//goto(rUrl, { invalidateAll: true });
|
|
34
|
+
goto(rUrl);
|
|
35
|
+
}
|
|
36
|
+
function dwnParams2(subInstName: string) {
|
|
37
|
+
const iPartName = subD[subInstName].partName;
|
|
38
|
+
const idparams = subD[subInstName].dparam;
|
|
39
|
+
const aComment = `sub-design parameters of ${iPartName} from ${origPartName}`;
|
|
40
|
+
downloadParams(iPartName, paramListToVal(idparams), aComment);
|
|
41
|
+
}
|
|
42
|
+
function printOrientation(vec: tPosiOrien): string {
|
|
43
|
+
let rStr = '[ ';
|
|
44
|
+
rStr += `${ffix(radToDeg(vec[0]))}, `;
|
|
45
|
+
rStr += `${ffix(radToDeg(vec[1]))}, `;
|
|
46
|
+
rStr += `${ffix(radToDeg(vec[2]))} ]`;
|
|
47
|
+
return rStr;
|
|
48
|
+
}
|
|
49
|
+
function printPosition(vec: tPosiOrien): string {
|
|
50
|
+
let rStr = '[ ';
|
|
51
|
+
rStr += `${ffix(vec[0])}, `;
|
|
52
|
+
rStr += `${ffix(vec[1])}, `;
|
|
53
|
+
rStr += `${ffix(vec[2])} ]`;
|
|
54
|
+
return rStr;
|
|
55
|
+
}
|
|
56
|
+
function printSet(changed: boolean): string {
|
|
57
|
+
const rStr = changed ? 'Yes' : '';
|
|
58
|
+
return rStr;
|
|
59
|
+
}
|
|
41
60
|
</script>
|
|
42
61
|
|
|
43
62
|
<section>
|
|
44
63
|
<h2>
|
|
45
64
|
Sub-designs
|
|
46
|
-
<span>(Number of sub-instances: {
|
|
65
|
+
<span>(Number of sub-instances: {dSubInstList.length})</span>
|
|
47
66
|
</h2>
|
|
48
67
|
<ol>
|
|
49
|
-
{#each
|
|
68
|
+
{#each dSubInstList as subInst}
|
|
50
69
|
<li>
|
|
51
70
|
<input type="checkbox" id="cb_{subInst}" class="toggle" checked={false} />
|
|
52
71
|
<label for="cb_{subInst}" class="label">
|
|
53
|
-
<div class="arrow"
|
|
72
|
+
<div class="arrow"></div>
|
|
54
73
|
{subInst}
|
|
55
74
|
</label>
|
|
56
|
-
<button
|
|
75
|
+
<button onclick={() => goToUrl(subInst)}
|
|
57
76
|
>Go to {pLink[subD[subInst].partName]}</button
|
|
58
77
|
>
|
|
59
|
-
<button
|
|
78
|
+
<button onclick={() => dwnParams2(subInst)}>Export parameters</button>
|
|
60
79
|
<div class="nested">
|
|
61
80
|
<article>
|
|
62
81
|
{Object.keys(subD[subInst].dparam).length} parameters of
|
|
@@ -1,21 +1,8 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
events: {
|
|
10
|
-
[evt: string]: CustomEvent<any>;
|
|
11
|
-
};
|
|
12
|
-
slots: {};
|
|
13
|
-
exports?: {} | undefined;
|
|
14
|
-
bindings?: string | undefined;
|
|
15
|
-
};
|
|
16
|
-
export type SubDesignProps = typeof __propDef.props;
|
|
17
|
-
export type SubDesignEvents = typeof __propDef.events;
|
|
18
|
-
export type SubDesignSlots = typeof __propDef.slots;
|
|
19
|
-
export default class SubDesign extends SvelteComponent<SubDesignProps, SubDesignEvents, SubDesignSlots> {
|
|
20
|
-
}
|
|
21
|
-
export {};
|
|
1
|
+
import type { tSubDesign, tAllLink } from 'geometrix';
|
|
2
|
+
declare const SubDesign: import("svelte").Component<{
|
|
3
|
+
subD: tSubDesign;
|
|
4
|
+
origPartName: string;
|
|
5
|
+
pLink: tAllLink;
|
|
6
|
+
}, {}, "">;
|
|
7
|
+
type SubDesign = ReturnType<typeof SubDesign>;
|
|
8
|
+
export default SubDesign;
|
package/dist/TimeControl.svelte
CHANGED
|
@@ -1,75 +1,90 @@
|
|
|
1
|
-
<script
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
}
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
}
|
|
35
|
-
function
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
}
|
|
41
|
-
function
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
}
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
1
|
+
<script lang="ts">
|
|
2
|
+
import { onDestroy } from 'svelte';
|
|
3
|
+
|
|
4
|
+
// props
|
|
5
|
+
interface Props {
|
|
6
|
+
tMax?: number;
|
|
7
|
+
tStep?: number;
|
|
8
|
+
tUpdate?: number;
|
|
9
|
+
simTime?: number;
|
|
10
|
+
}
|
|
11
|
+
let { tMax = 10, tStep = 0.1, tUpdate = 500, simTime = $bindable(0) }: Props = $props();
|
|
12
|
+
|
|
13
|
+
// internal state: no need of $state() because no UI update
|
|
14
|
+
let intervalID: ReturnType<typeof setTimeout> | null = null;
|
|
15
|
+
let speed = 0;
|
|
16
|
+
let inc: number;
|
|
17
|
+
const speedMax = 4;
|
|
18
|
+
|
|
19
|
+
// actions
|
|
20
|
+
function clearInterval2() {
|
|
21
|
+
if (intervalID !== null) {
|
|
22
|
+
clearInterval(intervalID);
|
|
23
|
+
intervalID = null;
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
function simRoutine() {
|
|
27
|
+
if (inc < 0 && simTime <= 0) {
|
|
28
|
+
simTime = tMax;
|
|
29
|
+
} else if (inc > 0 && simTime >= tMax) {
|
|
30
|
+
simTime = 0;
|
|
31
|
+
} else {
|
|
32
|
+
simTime += inc;
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
function setInterval2() {
|
|
36
|
+
const delay = tUpdate / 2 ** (Math.abs(speed) - 1);
|
|
37
|
+
inc = speed < 0 ? -tStep : tStep;
|
|
38
|
+
intervalID = setInterval(simRoutine, delay);
|
|
39
|
+
//console.log(`dbg909: ${delay} ======`);
|
|
40
|
+
}
|
|
41
|
+
function simZero() {
|
|
42
|
+
clearInterval2();
|
|
43
|
+
simTime = 0;
|
|
44
|
+
speed = 0;
|
|
45
|
+
}
|
|
46
|
+
function simDecrem() {
|
|
47
|
+
clearInterval2();
|
|
48
|
+
speed = 0;
|
|
49
|
+
inc = -tStep;
|
|
50
|
+
simRoutine();
|
|
51
|
+
//console.log(`dbg059: ${simTime}`);
|
|
52
|
+
}
|
|
53
|
+
function simIncrem() {
|
|
54
|
+
clearInterval2();
|
|
55
|
+
speed = 0;
|
|
56
|
+
inc = tStep;
|
|
57
|
+
simRoutine();
|
|
58
|
+
//console.log(`dbg069: ${simTime}`);
|
|
59
|
+
}
|
|
60
|
+
function simPlayBackward() {
|
|
61
|
+
clearInterval2();
|
|
62
|
+
speed = Math.max(speed - 1, -speedMax);
|
|
63
|
+
setInterval2();
|
|
64
|
+
//console.log(`dbg954: ${speed} ======`);
|
|
65
|
+
}
|
|
66
|
+
function simPlayForward() {
|
|
67
|
+
clearInterval2();
|
|
68
|
+
speed = Math.min(speed + 1, speedMax);
|
|
69
|
+
setInterval2();
|
|
70
|
+
//console.log(`dbg961: ${speed} ======`);
|
|
71
|
+
}
|
|
72
|
+
function simPause() {
|
|
73
|
+
clearInterval2();
|
|
74
|
+
speed = 0;
|
|
75
|
+
}
|
|
76
|
+
onDestroy(() => {
|
|
77
|
+
clearInterval2();
|
|
78
|
+
});
|
|
64
79
|
</script>
|
|
65
80
|
|
|
66
81
|
<nav>
|
|
67
|
-
<button
|
|
68
|
-
<button
|
|
69
|
-
<button
|
|
70
|
-
<button
|
|
71
|
-
<button
|
|
72
|
-
<button
|
|
82
|
+
<button onclick={simZero}>0</button>
|
|
83
|
+
<button onclick={simPlayBackward}><-</button>
|
|
84
|
+
<button onclick={simDecrem}>|<</button>
|
|
85
|
+
<button onclick={simPause}>||</button>
|
|
86
|
+
<button onclick={simIncrem}>>|</button>
|
|
87
|
+
<button onclick={simPlayForward}>-></button>
|
|
73
88
|
<input type="range" bind:value={simTime} min="0" max={tMax} step={tStep} />
|
|
74
89
|
<input type="number" bind:value={simTime} min="0" max={tMax} step={tStep} />
|
|
75
90
|
</nav>
|
|
@@ -1,21 +1,8 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
events: {
|
|
10
|
-
[evt: string]: CustomEvent<any>;
|
|
11
|
-
};
|
|
12
|
-
slots: {};
|
|
13
|
-
exports?: {} | undefined;
|
|
14
|
-
bindings?: string | undefined;
|
|
15
|
-
};
|
|
16
|
-
export type TimeControlProps = typeof __propDef.props;
|
|
17
|
-
export type TimeControlEvents = typeof __propDef.events;
|
|
18
|
-
export type TimeControlSlots = typeof __propDef.slots;
|
|
19
|
-
export default class TimeControl extends SvelteComponent<TimeControlProps, TimeControlEvents, TimeControlSlots> {
|
|
20
|
-
}
|
|
21
|
-
export {};
|
|
1
|
+
declare const TimeControl: import("svelte").Component<{
|
|
2
|
+
tMax?: number;
|
|
3
|
+
tStep?: number;
|
|
4
|
+
tUpdate?: number;
|
|
5
|
+
simTime?: number;
|
|
6
|
+
}, {}, "simTime">;
|
|
7
|
+
type TimeControl = ReturnType<typeof TimeControl>;
|
|
8
|
+
export default TimeControl;
|
package/dist/ZoomControl.svelte
CHANGED
|
@@ -1,20 +1,27 @@
|
|
|
1
|
-
<script
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
}
|
|
1
|
+
<script lang="ts">
|
|
2
|
+
// props
|
|
3
|
+
interface Props {
|
|
4
|
+
zoomClick: (action: string) => void;
|
|
5
|
+
}
|
|
6
|
+
let { zoomClick }: Props = $props();
|
|
8
7
|
</script>
|
|
9
8
|
|
|
10
9
|
<nav>
|
|
11
|
-
<button
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
10
|
+
<button aria-labelledby="zoomInit" onclick={() => zoomClick('zoomInit')}
|
|
11
|
+
><div class="zero"></div></button
|
|
12
|
+
><button aria-labelledby="zoomIn" onclick={() => zoomClick('zoomIn')}
|
|
13
|
+
><div class="zoomin"></div></button
|
|
14
|
+
><button aria-labelledby="zoomOut" onclick={() => zoomClick('zoomOut')}
|
|
15
|
+
><div class="zoomout"></div></button
|
|
16
|
+
><button aria-labelledby="moveLeft" onclick={() => zoomClick('moveLeft')}
|
|
17
|
+
><div class="arrowleft"></div></button
|
|
18
|
+
><button aria-labelledby="moveRight" onclick={() => zoomClick('moveRight')}
|
|
19
|
+
><div class="arrowright"></div></button
|
|
20
|
+
><button aria-labelledby="moveUp" onclick={() => zoomClick('moveUp')}
|
|
21
|
+
><div class="arrowup"></div></button
|
|
22
|
+
><button aria-labelledby="moveDown" onclick={() => zoomClick('moveDown')}
|
|
23
|
+
><div class="arrowdown"></div></button
|
|
24
|
+
>
|
|
18
25
|
</nav>
|
|
19
26
|
|
|
20
27
|
<style>/*
|
|
@@ -1,18 +1,5 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
} & {
|
|
7
|
-
[evt: string]: CustomEvent<any>;
|
|
8
|
-
};
|
|
9
|
-
slots: {};
|
|
10
|
-
exports?: {} | undefined;
|
|
11
|
-
bindings?: string | undefined;
|
|
12
|
-
};
|
|
13
|
-
export type ZoomControlProps = typeof __propDef.props;
|
|
14
|
-
export type ZoomControlEvents = typeof __propDef.events;
|
|
15
|
-
export type ZoomControlSlots = typeof __propDef.slots;
|
|
16
|
-
export default class ZoomControl extends SvelteComponent<ZoomControlProps, ZoomControlEvents, ZoomControlSlots> {
|
|
17
|
-
}
|
|
18
|
-
export {};
|
|
1
|
+
declare const ZoomControl: import("svelte").Component<{
|
|
2
|
+
zoomClick: (action: string) => void;
|
|
3
|
+
}, {}, "">;
|
|
4
|
+
type ZoomControl = ReturnType<typeof ZoomControl>;
|
|
5
|
+
export default ZoomControl;
|
package/dist/initStore.js
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
// initStore
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
2
|
+
//import { PType } from 'geometrix';
|
|
3
|
+
//import type { tStateParams } from './stateParams.svelte';
|
|
4
|
+
import { sParams } from './stateParams.svelte';
|
|
4
5
|
function initStore(designDefs) {
|
|
5
|
-
const iniPV = {};
|
|
6
|
+
//const iniPV: tStateParams = {};
|
|
6
7
|
for (const design of Object.keys(designDefs)) {
|
|
7
8
|
const designParam = {};
|
|
8
9
|
for (const param of designDefs[design].pDef.params) {
|
|
@@ -10,15 +11,15 @@ function initStore(designDefs) {
|
|
|
10
11
|
designParam[param.name] = param.init;
|
|
11
12
|
//}
|
|
12
13
|
}
|
|
13
|
-
|
|
14
|
+
sParams[design] = designParam;
|
|
14
15
|
}
|
|
15
|
-
|
|
16
|
+
//sParams = iniPV;
|
|
16
17
|
}
|
|
17
18
|
function updateStore(iPartName, dParams, overwrite) {
|
|
18
|
-
const iniPV =
|
|
19
|
-
const designNames = Object.keys(
|
|
19
|
+
//const iniPV = sParams;
|
|
20
|
+
const designNames = Object.keys(sParams);
|
|
20
21
|
if (designNames.includes(iPartName)) {
|
|
21
|
-
const inidParams =
|
|
22
|
+
const inidParams = sParams[iPartName];
|
|
22
23
|
const inidParamNames = Object.keys(inidParams);
|
|
23
24
|
for (const pa of Object.keys(dParams)) {
|
|
24
25
|
if (!inidParamNames.includes(pa)) {
|
|
@@ -28,14 +29,14 @@ function updateStore(iPartName, dParams, overwrite) {
|
|
|
28
29
|
inidParams[pa] = dParams[pa];
|
|
29
30
|
}
|
|
30
31
|
}
|
|
31
|
-
|
|
32
|
+
sParams[iPartName] = inidParams;
|
|
32
33
|
//console.log(`dbg781: updateStore of ${iPartName}`);
|
|
33
34
|
}
|
|
34
35
|
else {
|
|
35
|
-
|
|
36
|
+
sParams[iPartName] = dParams;
|
|
36
37
|
//console.log(`dbg782: updateStore of new ${iPartName}`);
|
|
37
38
|
}
|
|
38
|
-
|
|
39
|
+
//sParams = iniPV;
|
|
39
40
|
}
|
|
40
41
|
function incrStore(oneDesignDef) {
|
|
41
42
|
const dName = oneDesignDef.pDef.partName;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "geomui",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.56",
|
|
4
4
|
"description": "The svelte-library of the webapp-UI of Parametrix",
|
|
5
5
|
"private": false,
|
|
6
6
|
"repository": {
|
|
@@ -66,36 +66,36 @@
|
|
|
66
66
|
"clean": "rimraf .svelte-kit build node_modules dist static/pgdsvg"
|
|
67
67
|
},
|
|
68
68
|
"peerDependencies": {
|
|
69
|
-
"@sveltejs/kit": "^2.0
|
|
70
|
-
"svelte": "^
|
|
69
|
+
"@sveltejs/kit": "^2.7.0",
|
|
70
|
+
"svelte": "^5.1.0"
|
|
71
71
|
},
|
|
72
72
|
"dependencies": {
|
|
73
|
-
"geometrix": "^0.5.
|
|
73
|
+
"geometrix": "^0.5.53"
|
|
74
74
|
},
|
|
75
75
|
"devDependencies": {
|
|
76
76
|
"@atao60/fse-cli": "^0.1.9",
|
|
77
|
-
"@sveltejs/adapter-auto": "^3.
|
|
78
|
-
"@sveltejs/adapter-static": "^3.0.
|
|
79
|
-
"@sveltejs/kit": "^2.
|
|
80
|
-
"@sveltejs/package": "^2.3.
|
|
81
|
-
"@sveltejs/vite-plugin-svelte": "^
|
|
77
|
+
"@sveltejs/adapter-auto": "^3.3.1",
|
|
78
|
+
"@sveltejs/adapter-static": "^3.0.6",
|
|
79
|
+
"@sveltejs/kit": "^2.8.0",
|
|
80
|
+
"@sveltejs/package": "^2.3.7",
|
|
81
|
+
"@sveltejs/vite-plugin-svelte": "^4.0.0",
|
|
82
82
|
"@types/eslint": "^9.6.1",
|
|
83
|
-
"designix": "^0.5.
|
|
84
|
-
"eslint": "^9.
|
|
83
|
+
"designix": "^0.5.54",
|
|
84
|
+
"eslint": "^9.14.0",
|
|
85
85
|
"eslint-config-prettier": "^9.1.0",
|
|
86
|
-
"eslint-plugin-svelte": "^2.
|
|
87
|
-
"globals": "^15.
|
|
88
|
-
"npm-run-all2": "^
|
|
86
|
+
"eslint-plugin-svelte": "^2.46.0",
|
|
87
|
+
"globals": "^15.12.0",
|
|
88
|
+
"npm-run-all2": "^7.0.1",
|
|
89
89
|
"prettier": "^3.3.3",
|
|
90
90
|
"prettier-plugin-svelte": "^3.2.7",
|
|
91
|
-
"publint": "^0.2.
|
|
91
|
+
"publint": "^0.2.12",
|
|
92
92
|
"rimraf": "^6.0.1",
|
|
93
|
-
"sass": "^1.80.
|
|
94
|
-
"svelte": "^
|
|
95
|
-
"svelte-check": "^4.0.
|
|
93
|
+
"sass": "^1.80.6",
|
|
94
|
+
"svelte": "^5.1.13",
|
|
95
|
+
"svelte-check": "^4.0.6",
|
|
96
96
|
"typescript": "^5.6.3",
|
|
97
|
-
"typescript-eslint": "^8.
|
|
98
|
-
"vite": "^5.4.
|
|
99
|
-
"vitest": "^2.1.
|
|
97
|
+
"typescript-eslint": "^8.13.0",
|
|
98
|
+
"vite": "^5.4.10",
|
|
99
|
+
"vitest": "^2.1.4"
|
|
100
100
|
}
|
|
101
101
|
}
|
package/dist/drawingLayers.d.ts
DELETED
package/dist/drawingLayers.js
DELETED
package/dist/storePVal.d.ts
DELETED
package/dist/storePVal.js
DELETED