geomui 0.5.58 → 0.5.59

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,8 +1,9 @@
1
1
  import type { Figure, tSimTime } from 'geometrix';
2
- declare const Drawing: import("svelte").Component<{
2
+ interface Props {
3
3
  pDefSim: tSimTime;
4
4
  pFig: Figure;
5
5
  simTime?: number;
6
- }, {}, "simTime">;
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
- declare const DrawingList: import("svelte").Component<{
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
- declare const InputParams: import("svelte").Component<{
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
- declare const LocStorRead: import("svelte").Component<{
1
+ interface Props {
2
2
  pageName: string;
3
3
  storeName: string;
4
- }, {}, "storeName">;
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
- declare const LocStorTable: import("svelte").Component<{
1
+ interface Props {
2
2
  pageName: string;
3
3
  storeName: string;
4
4
  localKeys: string[];
5
- }, {}, "storeName" | "localKeys">;
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
- declare const LocStorWrite: import("svelte").Component<{
1
+ interface Props {
2
2
  pageName: string;
3
3
  storeName: string;
4
- }, {}, "storeName">;
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
- declare const ModalDiag: import("svelte").Component<{
4
+ interface Props {
5
5
  okName?: string;
6
6
  okFunc: tOkFunc;
7
7
  modalOpen: boolean;
8
8
  sizeLarge?: boolean;
9
9
  children: Snippet;
10
- }, {}, "modalOpen">;
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
- declare const ModalImg: import("svelte").Component<{
1
+ interface Props {
2
2
  svgPath: string;
3
3
  modalOpen: boolean;
4
- }, {}, "modalOpen">;
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
- declare const OneDesign: import("svelte").Component<{
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
- declare const ParamDrawExport: import("svelte").Component<{
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
- declare const SimpleDrawing: import("svelte").Component<{
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
- declare const SubDesign: import("svelte").Component<{
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
- declare const TimeControl: import("svelte").Component<{
1
+ interface Props {
2
2
  tMax?: number;
3
3
  tStep?: number;
4
4
  tUpdate?: number;
5
5
  simTime?: number;
6
- }, {}, "simTime">;
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
- declare const ZoomControl: import("svelte").Component<{
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.58",
3
+ "version": "0.5.59",
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.55"
73
+ "geometrix": "^0.5.56"
74
74
  },
75
75
  "devDependencies": {
76
76
  "@atao60/fse-cli": "^0.1.9",
77
77
  "@sveltejs/adapter-auto": "^3.3.1",
78
- "@sveltejs/adapter-static": "^3.0.6",
79
- "@sveltejs/kit": "^2.8.1",
78
+ "@sveltejs/adapter-static": "^3.0.8",
79
+ "@sveltejs/kit": "^2.15.2",
80
80
  "@sveltejs/package": "^2.3.7",
81
- "@sveltejs/vite-plugin-svelte": "^4.0.0",
81
+ "@sveltejs/vite-plugin-svelte": "^5.0.3",
82
82
  "@types/eslint": "^9.6.1",
83
- "designix": "^0.5.56",
84
- "eslint": "^9.14.0",
83
+ "designix": "^0.5.57",
84
+ "eslint": "^9.17.0",
85
85
  "eslint-config-prettier": "^9.1.0",
86
- "eslint-plugin-svelte": "^2.46.0",
87
- "globals": "^15.12.0",
88
- "npm-run-all2": "^7.0.1",
89
- "prettier": "^3.3.3",
90
- "prettier-plugin-svelte": "^3.2.8",
91
- "publint": "^0.2.12",
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.2",
91
+ "publint": "^0.3.0",
92
92
  "rimraf": "^6.0.1",
93
- "sass": "^1.80.7",
94
- "svelte": "^5.2.0",
95
- "svelte-check": "^4.0.7",
96
- "typescript": "^5.6.3",
97
- "typescript-eslint": "^8.14.0",
98
- "vite": "^5.4.11",
99
- "vitest": "^2.1.5"
93
+ "sass": "^1.83.1",
94
+ "svelte": "^5.17.3",
95
+ "svelte-check": "^4.1.3",
96
+ "typescript": "^5.7.3",
97
+ "typescript-eslint": "^8.19.1",
98
+ "vite": "^6.0.7",
99
+ "vitest": "2.1.6"
100
100
  }
101
101
  }